-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paththeme.css
77 lines (65 loc) · 1.03 KB
/
theme.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
body {
width: 100%;
margin: 0;
padding: 0;
font-family: 'Anonymous Pro', monospace;
color: #fff;
background: #000;
}
form {
margin: 100px 0 50px;
}
form canvas {
display: block;
margin: 0 auto;
}
form select {
margin: 16px auto 0;
width: 300px;
display: block;
}
form textarea {
display: block;
outline: none;
border: 2px solid rgba(256, 256, 256, .3);
border-radius: 2px;
width: 300px;
box-sizing: border-box;
padding: 4px 8px;
margin: 16px auto 0;
resize: vertical;
min-height: 100px;
}
form textarea.error {
border-color: rgba(256, 70, 10, .7);
}
pre {
margin: 16px auto 0;
font-size: 14px;
color: #555;
cursor: default;
text-align: left;
display: inline-block;
}
div {
text-align: center;
}
a {
color: #666;
text-decoration: none;
}
i, label {
color: #666;
font-style: normal;
cursor: pointer;
}
i:hover, label:hover {
color: #aaa;
}
input[type="radio"] { display: none; }
input[type="radio"]:checked+label {
color: #ccc;
}
a:hover {
text-decoration: underline;
}