blob: b70a704f61c49cef94278e16f001d59a588d0ce7 (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
@font-face {
font-family: 'text';
src: url("./text.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");
}
@font-face {
font-family: 'typewriter';
src: url("./typewriter.ttf") format("truetype");
}
* {
line-height: 1.5em;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #222;
}
body {
font-family: text, monospace;
width: 99%;
max-width: 800px;
margin: 2em auto 0;
padding: 0 20px;
display: block;
}
h1, h2, h3 {
font-weight: bold;
margin-top: 1em;
margin-bottom: 0.75em;
}
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1.25em;
}
h3 {
font-size: 1.0em;
}
a {
color: #248;
font-weight: 600;
text-decoration: none;
}
a:hover {
background-color: #9CFF00;
text-decoration: underline;
}
a:visited {
color: #248;
}
a.textlink:before {
content: "⇒ ";
padding-left: 11px;
}
p.quote {
font-style: italic;
}
p.quote:before {
content: "« ";
padding-left: 2px;
}
p.quote:after {
content: " »";
padding-right: 2px;
}
p {
margin: 0.75em 0 0.75em 0;
padding: 0 5px;
}
ol {
margin: 0.75em 0 0.75em 0;
padding: 0;
}
ul {
list-style: none;
padding-right: 23px;
padding-left: 10px;
margin: 0.75em 0 0.75em 0;
}
li {
margin-left: 1em;
margin-bottom: 0.25em;
}
li:before {
content: "★";
padding-right: 5px;
}
img {
max-width: 100%;
display: block;
margin: auto;
border: 1px solid #9CFF00;
}
pre {
font-family: code, monospace;
padding: 0;
overflow-x: scroll;
scrollbar-width: none;
border-left: 2px solid #9CFF00;
padding-left: 12px;
}
|