summaryrefslogtreecommitdiff
path: root/style.css
blob: 2e6e72396e1e57f410d3b2bb5b96a2fb37fa9981 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
@font-face {
    font-family: 'text';
    src: url("./text.ttf") format("truetype");
}

@font-face {
    font-family: 'heading';
    src: url("./heading.ttf") format("truetype");
}

@font-face {
    font-family: 'code';
    src: url("./code.ttf") format("truetype");
}

@font-face {
    font-family: 'handnotes';
    src: url("./handnotes.ttf") format("truetype");
}

html {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23cccccc"><polygon points="50,15 61,39 87,39 66,57 76,84 50,68 24,84 34,57 13,39 39,39"/></svg>'),
    radial-gradient(#000000 1px, transparent 1px);
    background-size: 32px 32px;
    background-color: #000000;
}

body {
    font-family: text, sans-serif;
    background: #ffffff;
    max-width: 1200px;
    padding: 20px;
    margin: 20px auto;
    border: 5px solid #eeeeee;
    border-radius: 15px;
    word-wrap: break-word;
}

h1, h2, h3 {
    font-family: heading, serif;
}

a {
    font-family: code, monospace;
    text-decoration: none;
    color: #666666;
    padding: 0 0 0 0;
}

a:hover {
    text-decoration: underline;
}

a.textlink:before {
    content: "⇒ ";
}

.quote {
    font-style: italic;
}

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

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

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

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

img {
    max-width: 90%;
}

pre {
    font-family: code, monospace;
    padding: 20px;
    border: 1px solid #dddddd;
    border-radius: 15px;
}

span.inlinecode {
    font-family: code, monospace;
    border: 1px solid #999999;
    border-radius: 2px;
}