blob: 5e132281140ce513e181858e975eae5661683a0e (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
body {
background: #090909;
color: ghostwhite;
margin: 1em auto;
max-width: 50em;
padding: 0em 1em 1em 1em;
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}
a {
color: darkorange;
}
ul {
list-style-type: "-> ";
}
header hgroup {
display: none;
}
nav {
width: 100%;
text-align: center;
font-weight: bold;
}
nav#categories {
font-weight: normal;
}
nav ul {
list-style: none;
padding-left: 0;
}
nav ul li {
display: inline;
}
nav ul li::after {
content: ' | ';
}
nav#categories ul li::after {
content: ', ';
}
nav ul li:last-child::after,
nav#categories ul li:last-child::after,
nav#categories ul li:first-child::after {
content: '';
}
main {
border: 2px double ghostwhite;
padding: 0em 1em 1em 1em;
}
img {
max-width: 100%;
height: auto;
}
body > footer > address {
margin-top: 0.5em;
font-size: 0.7em;
text-align: center;
}
main > article > footer {
font-size: 0.8em;
}
main > article > footer > p {
margin: 0;
}
@media only screen and (max-width: 900px) {
body {
width: 87%;
}
}
|