blob: fc22ec108a3ec7367a0f37b5afdbf8b1c0e721db (
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
|
body {
margin: 5ex 10ex;
max-width: 40em;
line-height: 1.4;
font-family: sans-serif;
font-size: 0.8em;
}
h1, h2, h3 {
font-weight: normal;
}
pre, code {
font-family: x, monospace;
}
pre {
padding: 1ex;
background: #eee;
border: solid 1px #ddd;
min-width: 0;
font-size: 90%;
}
code {
color: #007;
}
.chapter {
margin-top: 4em;
}
p {
margin-top: 0;
}
|