blob: 0216b56643be1d3164ff4548be6551f30f2221cc (
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
|
body {
background: black;
color: lightgray;
border: solid 1px lightgray;
margin: 1em auto;
max-width: 50em;
padding: 0em 1em 1em 1em;
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}
a {
color: white;
font-weight: bold;
}
ul {
list-style-type: "* ";
}
header#banner {
display: none;
}
nav#menu {
width: 100%;
text-align: center;
}
nav#menu ul {
list-style: none;
}
nav#menu ul li {
display: inline;
}
nav#menu ul li::after {
content: ' | ';
}
nav#menu ul li:last-child::after {
content: '';
}
footer#contentinfo {
font-size: 0.7em;
text-align: center;
}
ol#post-list {
list-style: none;
padding-left: 0em;
}
footer.post-info {
font-size: 0.8em;
}
|