blob: abbe8e6b83f3ad6159a1c357125a47c7b1f9eb29 (
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
|
html, body, header, article, footer,
h1, p, ul, li {
display: block;
}
a, time {
display: inline;
}
body {
margin: 8px;
font-family: sans-serif;
font-size: 16px;
color: #000000;
line-height: 1.5;
}
h1 {
font-size: 2em;
font-weight: bold;
margin: 0.67em 0;
}
p {
margin: 1em 0;
}
ul {
margin: 1em 0;
padding-left: 40px;
list-style-type: disc;
}
li {
display: list-item;
}
a {
color: #0000ee;
text-decoration: underline;
}
|