wires

summary refs log tree commit diff
path: root/assets/style.css
blob: b1b8d23f2468c8f765b6182734b4f2ff0b75a9ee (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
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
84
85
86
87
.skip {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    position: static;
    width: auto;
    height: auto;
}

body {
    max-width: 45rem;
    padding: 0 2rem;
    margin: 2rem auto 0;
    line-height: 1.6;
    background: #11111b;
    color: white;
}

h1, h2, h3 {
    margin-bottom: 0.25em;
    line-height: 1.3;
}

p {
    margin-top: 0;
}

p + p {
    text-indent: 2em;
}

ul {
    margin-top: 0;
}

#main-nav {
    font-size: 125%;
}

#main-nav ul {
    padding: 0;
    margin: 0 0 1em;
}

#main-nav li {
    display: inline-block;
}

#main-nav li::before {
    content: '/ ';
}

#main-nav li:first-child::before {
    content: '';
}

#site-title {
    font-weight: bold;
    color: inherit;
    text-decoration: none;
}

#site-title:hover {
    text-decoration: underline;
}

footer {
    margin: 2em 0 0;
}

header h1 {
    margin: 0;
}

header {
    margin-bottom: 1em;
}

a, a:visited {
    color: #8ef;
}