-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.css
85 lines (70 loc) · 1.03 KB
/
main.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
* {
font-family: "SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;
font-size: 12px;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 1.5em;
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex: 1 0 auto;
}
footer {
flex-shrink: 0;
font-size: 11px;
text-align: center;
margin: 3em 1em 0 1em;
color: #525252;
}
a {
color: inherit;
}
a:active,
a:hover {
color: inherit;
outline: 0;
}
details, form, p {
margin-bottom: 1em;
}
details > *:not(summary) {
padding: 1em;
}
details:not([open]) {
opacity: 0.4;
}
details summary {
outline: none;
cursor: zoom-in;
}
details[open] summary {
font-weight: bold;
cursor: zoom-out;
}
hr {
border: none;
margin: 8em 0 0;
}
ul, ol, li {
margin-left: 1em;
}
fieldset {
display: inline-block;
vertical-align: top;
margin: 0 0.5em 0.5em 0;
padding: 0.3em 0.6em;
border: 1px solid #666;
border-radius: 3px;
}
legend {
color: #333;
}
button {
font-size: 11px;
padding: 2px 8px 3px 8px;
}