blob: f63932e2b0f48cf90c3445566d310b44e5d95260 (
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
|
/* file : intro.css
* copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
* license : MIT; see accompanying LICENSE file
*/
html
{
color: #333;
}
#content
{
padding-left: 3em; /* Reserve for headings. */
}
h1
{
font-weight: normal;
font-size: 1.58em;
line-height: 1.4em;
margin: 1.6em 0 .6em -1.89em;
}
code
{
background-color: rgba(0, 0, 0, 0.04);
border-radius: 0.2em;
padding: .2em 0 .2em 0;
}
code::before
{
letter-spacing: -0.2em;
content: "\00a0";
}
code::after
{
letter-spacing: -0.2em;
content: "\00a0";
}
pre
{
background-color: #f7f7f7;
border-radius: 0.2em;
padding: .8em .4em .8em .4em;
margin: 1.5em -.4em 1.5em -.4em; /* Use margins of #content. */
}
dl {
margin: 1em 0 1em 0;
}
dl dt {
margin: 0 0 0 0;
}
dl dd {
margin: 0 0 0 1.8em;
}
/* Title page */
#titlepage {
margin: 3em 0 1.8em 0;
padding-bottom: .8em;
border-bottom: 1px solid black;
}
#titlepage .title {
font-weight: bold;
font-size: 200%;
text-align: center;
padding: 1em 0 2em 0;
}
#titlepage p {
padding-bottom: 1em;
}
#titlepage #revision {
padding-bottom: 0em;
}
|