blob: b43779e923072b460903b99ab8f91f961bdc2613 (
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
|
ul {
list-style: circle;
}
#title-header {
border-bottom: 1px solid #AAA;
}
#title-header .title {
margin-top: 2rem;
margin-bottom: 2rem;
margin-left: 0;
margin-right: 0;
}
#title-header .title a {
color: #222;
text-decoration: none;
}
#title-header .social {
margin-top: 1rem;
}
#title-header .social .spaced {
color: #AAA;
text-decoration: none;
margin-right: 1em;
}
#title-header .social a:hover {
color: #222;
}
#posts-list {
margin-top: 3rem;
list-style: none;
}
#posts-list h2 {
margin: 0;
}
#posts-list h2 a {
color: #222;
text-decoration: none;
}
#post-header {
margin-top: 3rem;
margin-bottom: 2rem;
}
#post-headline {
margin: 0;
}
#post-sub-header {
color: #AAA;
}
#post-content ul {
margin-left: 1em;
}
|