forked from fanruan/fineui
guy
8 years ago
8 changed files with 156 additions and 118 deletions
@ -0,0 +1,51 @@ |
|||||||
|
/****添加计算宽度的--运算符直接需要space****/ |
||||||
|
/****** common color(常用颜色,可用于普遍场景) *****/ |
||||||
|
/**** custom color(自定义颜色,用于特定场景) ****/ |
||||||
|
html, |
||||||
|
body, |
||||||
|
div, |
||||||
|
ul, |
||||||
|
li, |
||||||
|
img, |
||||||
|
a, |
||||||
|
span, |
||||||
|
p, |
||||||
|
* { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
a { |
||||||
|
outline: none; |
||||||
|
text-decoration: none; |
||||||
|
} |
||||||
|
a:focus { |
||||||
|
outline: 0; |
||||||
|
} |
||||||
|
input, |
||||||
|
textarea { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
outline: none; |
||||||
|
border: 1px solid #d4dadd; |
||||||
|
} |
||||||
|
.bi-theme-dark input, |
||||||
|
.bi-theme-dark textarea { |
||||||
|
border: 1px solid #525466; |
||||||
|
} |
||||||
|
ul, |
||||||
|
ol { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
ul { |
||||||
|
list-style: disc; |
||||||
|
} |
||||||
|
li { |
||||||
|
list-style-type: none; |
||||||
|
} |
||||||
|
i { |
||||||
|
font-style: normal; |
||||||
|
-webkit-font-smoothing: antialiased; |
||||||
|
-webkit-text-stroke-width: 0.2px; |
||||||
|
-moz-osx-font-smoothing: grayscale; |
||||||
|
} |
@ -0,0 +1,51 @@ |
|||||||
|
@import "../bibase"; |
||||||
|
|
||||||
|
html, body, div, ul, li, img, a, span, p, * { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
|
||||||
|
a { |
||||||
|
outline: none; |
||||||
|
text-decoration: none; |
||||||
|
} |
||||||
|
|
||||||
|
a:focus { |
||||||
|
outline: 0; |
||||||
|
} |
||||||
|
|
||||||
|
input, |
||||||
|
textarea { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
outline: none; |
||||||
|
border: 1px solid @color-bi-border-line; |
||||||
|
} |
||||||
|
|
||||||
|
.bi-theme-dark { |
||||||
|
input, |
||||||
|
textarea { |
||||||
|
border: 1px solid @color-bi-border-line-theme-dark; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
ul, |
||||||
|
ol { |
||||||
|
margin: 0; |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
|
||||||
|
ul { |
||||||
|
list-style: disc; |
||||||
|
} |
||||||
|
|
||||||
|
li { |
||||||
|
list-style-type: none; |
||||||
|
} |
||||||
|
|
||||||
|
i { |
||||||
|
font-style: normal; |
||||||
|
-webkit-font-smoothing: antialiased; |
||||||
|
-webkit-text-stroke-width: 0.2px; |
||||||
|
-moz-osx-font-smoothing: grayscale; |
||||||
|
} |
Loading…
Reference in new issue