blob: 9cd9797cdfb79c2abd9aa96da3a7fda0f512da96 (
plain)
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
|
html {
font-family:sans-serif
}
header,main,footer {
max-width: 40em;
margin: 0 auto;
}
footer {
text-align: center;
}
nav {
padding-bottom: 1.3rem;
}
time.right {
float: right;
}
nav .left {
float: left;
margin-right: 1rem;
}
nav .right {
float: right;
margin-left: 1rem;
}
blockquote {
color: lightgreen;
}
ol,ul {
white-space: nowrap;
padding-left: 16px
}
li {
margin-bottom: 8px
}
a {
text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
a {
color: white;
}
}
@media (prefers-color-scheme: light) {
a {
color: black;
}
}
|