blob: c2800474a117136f0e54a43fb496f5616a02645f (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*
* kerb.css
* ~~~~~~~~~~~
*
* Sphinx stylesheet -- modification to agogo theme.
*
*/
div.body {
padding-right: .5em;
text-align: left;
overflow-x: hidden;
}
/* Page layout */
div.header, div.content, div.footer {
margin-left: auto;
margin-right: auto;
}
div.header-wrapper {
background: white;
border-bottom: 3px solid #2e3436;
border-top: 13px solid #59121e;
}
/* Header */
div.header {
padding-top: 10px;
padding-bottom: 10px;
}
div.header h1 {
font-family: "Georgia", "Times New Roman", serif, black;
font-weight: normal;
}
div.header div.right a {
color: #fcaf3e;
letter-spacing: .1em;
text-transform: lowercase;
float: right;
}
/* Content */
div.document {
width: 80%;
float: left;
margin: 0;
background-color: white;
padding-top: 20px;
padding-bottom: 20px;
}
div.document div.section h1 {
margin-bottom: 20px;
padding: 1px;
line-height: 130%;
}
div.document div.section dl {
margin-top: 15px;
margin-bottom: 5px;
padding: 1px;
text-align: left;
}
/* Sidebar */
div.sidebar {
float: right;
font-size: .9em;
width: 20%;
margin: 0;
padding: 0;
background-color: white;
}
div.sidebar ul {
list-style-type: none;
margin-left: .5em;
}
div.sidebar li.toctree-l1 a {
margin-left: .5em;
}
div.sidebar li.toctree-l2 a {
margin-left: .5em;
}
div.sidebar li.toctree-l3 a {
margin-left: .5em;
}
div.sidebar li.toctree-l2.current a {
border-right: 2px solid #fcaf3e !important;
}
div.sidebar li.toctree-l3.current a {
font-weight: bold;
}
div.sidebar li.toctree-l4 a {
display: none;
}
/* Other body styles */
dt:target, .highlighted {
background-color: #c1c1c1;
}
/* Code displays */
pre {
overflow: auto;
overflow-y: hidden;
}
td.linenos pre {
padding: 5px 0px;
border: 0;
background-color: transparent;
color: #aaa;
}
|