-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.css
78 lines (67 loc) · 989 Bytes
/
global.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
html {
background:#f9f8f5;
}
body {
overflow-x:hidden;
color:#666;
}
select {
color:#333;
padding:4px 4px;
}
input {
color:#333;
padding:2px 4px;
}
input:focus {
outline: none;
}
a {
color:#0078b6;
cursor: pointer;
}
img,input {
vertical-align: middle;
}
input[type=text] {
height:25px;
line-height: 1;
padding: 0 0 0 5px;
border:1px solid #b7b7b7;
-webkit-box-shadow:inset 0 1px 2px #ddd;
-moz-box-shadow:inset 0 1px 2px #ddd;
box-shadow:inset 0 1px 2px #ddd;
}
/*扁平版*/
input[type=text].flat{
-webkit-box-shadow:none;
-moz-box-shadow:none;
box-shadow:none;
}
.hidden,div.hidden,span.hidden,a.hidden,ul.hidden {
display:none;
}
/* 设置一些原子样式 */
.font-red {
color:red;
}
.font-gold {
color:#FF5500;
}
.font-green {
color:#288e1d;
}
.font-gray{
color:#999
}
.font-bold {
font-weight:bold;
}
/* 滚动条隐身 */
/*::-webkit-scrollbar{
width: 0px;
height: 0px;
}
::-webkit-scrollbar-thumb:horizontal {
width: 0px;
}*/