summaryrefslogtreecommitdiff
path: root/style.css
blob: e7276cd9c886c1d5fb740d7f808158aa00dff3cf (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
76
77
78
79
80
81
body {
    font-family: sans-serif;
    max-width: 1024px;
}

a {
    font-family: courier, monospace;
    text-decoration: none;
    color: #0e0e0e;
}

h1 {
    font-family: serif;
    color: #ff6600;
}

h2 {
    font-family: serif;
    color: #ff751a;
}

h3 {
    font-family: serif;
    color: #ff8533;
}

a {
    padding: 0 0 0 0;
}

a:hover {
    text-decoration: underline;
}

a.textlink:before {
    content: "⇒ ";
    color: #ff8533;
}

.quote {
    font-style: italic;
}

.quote:before {
    content: "« ";
    padding-left: 2px;
    color: #ff8533;
}

.quote:after {
    content: " »";
    padding-right: 2px;
    color: #ff8533;
}

ul {
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

li:before {
    content: "★";
    padding-right: 5px;
    color: #ff8533;
}

img {
    max-width: 90%;
}

pre {
    font-family: courier, monospace;
    background: #1e1e1e;
    padding: 20px;
    color: #ffffff;
}

span.inlinecode {
    font-family: courier, monospace;
}