-
Notifications
You must be signed in to change notification settings - Fork 11
/
ccl.css
96 lines (78 loc) · 1.25 KB
/
ccl.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
88
89
90
91
92
93
94
95
96
tt, code, pre {
font-family: "Inconsolata", "Menlo", "DejaVu Sans Mono", "Courier";
font-size: medium;
}
pre {
font-size: 90%;
overflow: auto;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Eras Demi ITC", sans-serif;
font-weight: normal
}
body {
background-color: white;
margin-left: 2em;
margin-right: 1em;
font-family: "Georgia", serif;
font-size: medium;
}
h1 {
font-size: xx-large;
margin-bottom: 1.2em;
}
h2 {
font-size: x-large;
margin-bottom: 1em;
}
h3 {
font-size: large;
margin-bottom: 1em;
}
h4 {
font-size: medium;
margin-bottom: 1em;
}
h5 {
font-size: medium;
margin-bottom: 1em;
}
h6 {
font-size: medium;
margin-bottom: 1em;
}
.definition {
margin-bottom: 1.5em;
}
.definition-kind {
float: right;
}
caption {
caption-side: bottom;
margin-top: 1em;
}
table {
margin-left: auto;
margin-right: auto;
}
tbody tr:nth-child(odd) {
background: #eee;
}
div.sidebar {
float: left;
position: fixed;
width: 230px;
font-size: small;
}
div.sidebar > ul {
padding: 0;
}
div.body {
margin-left: 250px;
}
pre.source-code {
background-color: #eee;
border: 1px solid #888;
padding: 1em;
white-space: pre;
}