blob: e2797cee6fc76094e0e48e8b34f91122ae589e16 (
plain) (
blame)
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
|
@import url('https://fonts.googleapis.com/css?family=Source+Serif+Pro:400,700');
body {
color: #eee;
background-color: #111;
font-family: 'Source Serif Pro', serif;
font-size: 1.2em;
max-width: 42em;
margin: 1em;
padding: 0;
}
h1 {
color: #888;
font-size: 2em;
font-weight: bold;
margin: 0.5em 0;
}
.entry {
margin: 1em 0;
}
.entry p {
line-height: 1.4;
margin: 0.5em 0;
}
.entry p .date {
font-weight: bold;
}
|