-
Notifications
You must be signed in to change notification settings - Fork 133
/
default.css
88 lines (72 loc) · 1.21 KB
/
default.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
body {
text-align: left;
text-align-last: left;
}
.nav-bar {
font-size: 120%;
margin-top: 5px;
margin-bottom: 5px;
}
.nav-link {
padding-left: 5em;
padding-right: 5em;
}
ul.toc {
line-height: 200%;
font-size: 150%;
}
code {
font-family: consolas, monospace;
line-height: 130%;
}
span.Constant {
color: DarkGreen;
}
span.Special {
color: #c06000;
}
span.Comment {
color: DarkRed;
font-style: italic;
}
span.Identifier {
color: DarkCyan;
}
span.PreProc {
color: DarkMagenta;
}
span.Statement, span.Type, span.Keyword, span.Repeat, span.Conditional,
span.Operator, span.Exception
{
color: DarkBlue;
}
span.Todo {
color: DarkRed;
background-color: Gold;
font-style: italic;
}
span.Underlined {
text-decoration: underline;
}
span.linkable {
font-weight: bold;
}
code ol {
counter-reset: item;
list-style-type: none;
margin-left: 0;
padding-left: 0;
list-style-position: inside;
}
code li {
display: block;
}
code li:before {
content: counter(item) " ";
counter-increment: item;
color: #999;
padding-right: 0.5em;
padding-left: 0.4em;
list-style-position: inside;
text-align: right
}