-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (65 loc) · 1.22 KB
/
style.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
body > * {
max-width: 1000px;
margin: 0 auto;
margin-top: 24px;
font-family: sans-serif;
color: #666;
padding: 0 24px;
}
input, textarea {
border: 1px solid #333;
padding: 6px 12px;
border-radius: 4px;
margin-right: 24px;
}
input:focus, textarea:focus {
box-shadow: 0 0 0 1px #037DBC;
border-color: #037DBC;
outline: none;
}
label {
display: inline-block;
margin-bottom: 24px;
font-weight: bold;
margin-right: 6px;
color: #333;
min-width: 160px;
padding-top: 6px;
}
label, input {
float: left;
}
input + label {
clear: both;
}
/* Cheat a line break */
input:after {
content: "";
display: block;
}
button {
padding: 6px 12px;
background: #fff;
outline: none;
appearance: none;
border: 2px solid #037DBC;
border-radius: 4px;
color: #037DBC;
font-weight: bold;
}
button:hover, button:focus, button:active {
background-color: #037DBC;
color: #fff;
}
button[type='button'] {
border-color: #666;
color: #333
}
button[type='button']:hover, button[type='button']:focus, button[type='button']:active {
border-color: #037DBC;
color: #037DBC;
background: #fff;
}
.theme-switch-wrapper {
display: none;
}