-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoptions.css
executable file
·161 lines (153 loc) · 3.58 KB
/
options.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
body {
padding: 0;
margin: 0;
font: 13px Verdana, Geneva, sans-serif;
}
img {
padding: 3px;
}
h1 {
text-align: center;
font: 400 32px "Candara","Microsoft Yahei","Verdana","黑体",sans-serif;
word-spacing: 2px;
color: #030;
text-shadow: 0 2px 3px #fff;
border-bottom: 1px solid #aca;
background: #fff -webkit-gradient(linear, 0 0, 0 98%, from(#fff), to(#eefae0));
-webkit-box-shadow: inset 0 0 10px #fff;
padding: 20px 10px 10px;
margin: 0 0 20px;
}
h1 img {
margin: -5px 5px 0 1px;
vertical-align: middle;
}
h2 {
padding-bottom: 5px;
font-size: 14px;
margin: 0 0 10px;
}
fieldset, section {
width: 45%;
display: inline-block;
vertical-align: top;
margin: 0 1% 1.2%;
padding: 1.2%;
border: 1px solid #cfdfcf;
background: -webkit-gradient( linear, 0 0, 0 20, from(rgb(255,255,255)), to(rgb(248,251,248)) );
-webkit-box-shadow: 0 0 2px #cec;
}
fieldset:nth-of-type(odd) {
clear: left;
}
legend {
font-size: 14px;
padding: 6px 9px;
border: 1px solid #aca;
border-radius: 2px;
color: #363;
text-shadow: 0 1px 0 #eee;
background: -webkit-gradient(linear, 0 10%, 0 100%, from(#fff), to(#f3fff3));
display: inline-block;
-webkit-box-shadow: 0 0 1px #cdc;
}
p {
color: #666;
line-height: 1.4em;
padding: 0;
margin: 0.4em 0 1em;
}
label {
color: #333;
}
.tip {
color: #888;
}
.inline-icon {
vertical-align: middle;
display: inline-block;
top: -3px;
position: relative;
}
input {
padding: 3px;
border: 1px solid #9a9;
}
.valiMsg{
margin-left: 5px;
}
.error {
color: #d66;
background: #fee;
}
hr {
clear: both;
visibility: hidden;
}
.buttons {
clear: both;
border-top: 2px dotted #cdc;
text-align: center;
padding: 15px 10px 50px;
margin-top: 15px;
background: -webkit-gradient(linear, 0 0, 0 100%, from(#ecf6ef), to(#fff));
}
button {
display: inline-block;
cursor: pointer;
font: 20px/20px "Candara", "Calibri", "Microsoft Yahei", "Verdana", "黑体",sans-serif;
letter-spacing: 1px;
vertical-align: bottom;
margin-right: 1.5%;
border: 1px solid #9c9;
padding: 0;
border-radius: 3px;
color: #252;
text-shadow: 0 1px 0 #fff;
background: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#fff), color-stop(0.1, rgba(235,255,225,1) ), color-stop(0.95, rgba(220,240,210,1)) );
-webkit-box-shadow: 0 1px 3px #ded;
}
button:active {
color: #131;
background: #fff -webkit-gradient(linear, 0 60, 0 100%, from(#fff), to(rgba(230,255,233,1)));
}
button span {
display: inline-block;
height: 20px;
padding: 8px 18px 8px 19px;
border: 1px solid #fff;
border-radius: 4px;
-webkit-box-shadow: inset 0 0 10px rgba(255,255,255,0.6);
}
@-webkit-keyframes btn-pulse {
0% {
color: #252;
border: 1px solid #9c9;
-webkit-box-shadow: 0 1px 3px #ded;
}
30% {
border: 1px solid #8b8;
-webkit-box-shadow: 0 0 10px #afb;
color: #272;
}
100%{
color: #252;
border: 1px solid #9c9;
-webkit-box-shadow: 0 1px 3px #ded;
}
}
button:hover {
-webkit-animation: btn-pulse 2s ease-in-out infinite;
}
button:hover span{
-webkit-box-shadow: inset 0 3px 15px rgba(255,255,255,0.95);
}
footer {
padding: 20px;
text-align: center;
font-size: 15px;
color: #999;
}
footer a{
color: #888;
}