-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetting.css
48 lines (43 loc) · 936 Bytes
/
setting.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
* {
font-family: 'microsoft yahei';
}
body {
width: 400px;
height: 400px;
}
textarea {
width: 350px;
height: 300px;
overflow: auto;
}
button {
font-weight: 400;
text-align: center;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
color: #FFF;
border-color: #2e6da4;
background-color: #337ab7;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
button:hover {
background-color: #286090;
border-color: #204d74;
}
textarea {
padding: 6px 12px;
font-size: 14px;
color: #555;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.42857143;
}