aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/style.css
blob: ccbbeeb94e8fb488552382f2ecd7587061bcadd0 (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
* {
    box-sizing: border-box;
}

body {
	font-family: sans-serif;
    line-height: 1.4;
    padding: 12px;
}

h1 {
    line-height: 1.2;
    margin-bottom: 0;
}
h1 + p {
    margin-top: 0;
}

.posts {
    padding: 0 0 0 12px;
}
.posts li {
    margin: 0 0 10px;
}
.posts li span {
    display: none;
}

p code, ul code, ol code, blockquote code {
    background: #f1f1f1;
    padding: 2px;
}

pre {
    background: #f1f1f1;
    overflow: auto;
    padding: 8px;
}

blockquote {
    color: brown;
    font-family: serif;
    font-style: italic;
    font-size: 110%;
}

img {
    height: auto;
    max-width: 100%;
}

table {
    border-collapse: collapse;
    margin: 2em 0;
    text-align: left;
    width: 100%;
}
table th, table td {
    padding: 4px;
}
table tr:nth-of-type(even) {
    background: #f1f1f1;
}

footer {
    margin: 2rem 0 0;
}
footer nav ul {
    list-style: none;
    padding: 0;
}
footer nav ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
}