-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (78 loc) · 1.06 KB
/
style.css
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
body {
margin: 3em;
font-family: Univers, U001, sans;
font-size: 10pt;
width: 90ex;
}
header {
text-align: right;
font-family: Optima, URWClassico, sans;
font-style: italic;
margin-top: 4em;
margin-bottom: 6em;
}
header hr {
height: 4pt;
border: 0;
background-color: black;
margin-top: 0;
}
/* document title */
h1 {
font-size: 24pt;
margin-bottom: 0;
}
/* document subtitle */
header p {
font-size: 16pt;
margin-top: 0;
}
/* subsection heading */
h5 {
font-size: 12pt;
font-weight: bold;
margin-top: 2em;
margin-bottom: 1em;
}
/* paragraph heading */
h6 {
font-size: 10pt;
font-weight: bold;
margin-bottom: 0;
margin-top: 1em;
}
/* definition lists */
dl {
display: grid;
grid-template-columns: 15% 85%;
margin-top: 0;
}
dd {
margin-left: 1ex;
}
dt {
font-style: italic;
}
/* errata tables */
table {
width: 100%;
margin-top: 1ex;
margin-bottom: 1ex;
}
col.bk {
width: 8ex;
}
col.pp {
width: 11ex;
}
tr:nth-child(odd) {
background-color: #e0e0e0;
}
td {
vertical-align: top;
}
/* dividers */
hr {
color: grey;
border-style: dashed;
}