blob: d641c4eefe40837326d911f9b8c49e6e248cf6f3 (
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
|
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;
color: white;
}
|