Show More
@@ -1,534 +1,534 b'' | |||||
1 | /** |
|
1 | /** | |
2 | * Alternate Sphinx design |
|
2 | * Alternate Sphinx design | |
3 | * Originally created by Armin Ronacher for Werkzeug, adapted by Georg Brandl. |
|
3 | * Originally created by Armin Ronacher for Werkzeug, adapted by Georg Brandl. | |
4 | */ |
|
4 | */ | |
5 |
|
5 | |||
6 | body { |
|
6 | body { | |
7 | font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif; |
|
7 | font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif; | |
8 | font-size: 14px; |
|
8 | font-size: 14px; | |
9 | letter-spacing: -0.01em; |
|
9 | letter-spacing: -0.01em; | |
10 | line-height: 150%; |
|
10 | line-height: 150%; | |
11 | text-align: center; |
|
11 | text-align: center; | |
12 | /*background-color: #AFC1C4; */ |
|
12 | /*background-color: #AFC1C4; */ | |
13 | background-color: #BFD1D4; |
|
13 | background-color: #BFD1D4; | |
14 | color: black; |
|
14 | color: black; | |
15 | padding: 0; |
|
15 | padding: 0; | |
16 | border: 1px solid #aaa; |
|
16 | border: 1px solid #aaa; | |
17 |
|
17 | |||
18 | margin: 0px 80px 0px 80px; |
|
18 | margin: 0px 80px 0px 80px; | |
19 | min-width: 740px; |
|
19 | min-width: 740px; | |
20 | } |
|
20 | } | |
21 |
|
21 | |||
22 | a { |
|
22 | a { | |
23 | color: #CA7900; |
|
23 | color: #CA7900; | |
24 | text-decoration: none; |
|
24 | text-decoration: none; | |
25 | } |
|
25 | } | |
26 |
|
26 | |||
27 | a:hover { |
|
27 | a:hover { | |
28 | color: #2491CF; |
|
28 | color: #2491CF; | |
29 | } |
|
29 | } | |
30 |
|
30 | |||
31 | pre { |
|
31 | pre { | |
32 | font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; |
|
32 | font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; | |
33 | font-size: 0.95em; |
|
33 | font-size: 0.95em; | |
34 | letter-spacing: 0.015em; |
|
34 | letter-spacing: 0.015em; | |
35 | padding: 0.5em; |
|
35 | padding: 0.5em; | |
36 | border: 1px solid #ccc; |
|
36 | border: 1px solid #ccc; | |
37 | background-color: #f8f8f8; |
|
37 | background-color: #f8f8f8; | |
38 | } |
|
38 | } | |
39 |
|
39 | |||
40 | td.linenos pre { |
|
40 | td.linenos pre { | |
41 | padding: 0.5em 0; |
|
41 | padding: 0.5em 0; | |
42 | border: 0; |
|
42 | border: 0; | |
43 | background-color: transparent; |
|
43 | background-color: transparent; | |
44 | color: #aaa; |
|
44 | color: #aaa; | |
45 | } |
|
45 | } | |
46 |
|
46 | |||
47 | table.highlighttable { |
|
47 | table.highlighttable { | |
48 | margin-left: 0.5em; |
|
48 | margin-left: 0.5em; | |
49 | } |
|
49 | } | |
50 |
|
50 | |||
51 | table.highlighttable td { |
|
51 | table.highlighttable td { | |
52 | padding: 0 0.5em 0 0.5em; |
|
52 | padding: 0 0.5em 0 0.5em; | |
53 | } |
|
53 | } | |
54 |
|
54 | |||
55 | cite, code, tt { |
|
55 | cite, code, tt { | |
56 | font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; |
|
56 | font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; | |
57 | font-size: 0.95em; |
|
57 | font-size: 0.95em; | |
58 | letter-spacing: 0.01em; |
|
58 | letter-spacing: 0.01em; | |
59 | } |
|
59 | } | |
60 |
|
60 | |||
61 | hr { |
|
61 | hr { | |
62 | border: 1px solid #abc; |
|
62 | border: 1px solid #abc; | |
63 | margin: 2em; |
|
63 | margin: 2em; | |
64 | } |
|
64 | } | |
65 |
|
65 | |||
66 | tt { |
|
66 | tt { | |
67 | background-color: #f2f2f2; |
|
67 | background-color: #f2f2f2; | |
68 | border-bottom: 1px solid #ddd; |
|
68 | border-bottom: 1px solid #ddd; | |
69 | color: #333; |
|
69 | color: #333; | |
70 | } |
|
70 | } | |
71 |
|
71 | |||
72 | tt.descname { |
|
72 | tt.descname { | |
73 | background-color: transparent; |
|
73 | background-color: transparent; | |
74 | font-weight: bold; |
|
74 | font-weight: bold; | |
75 | font-size: 1.2em; |
|
75 | font-size: 1.2em; | |
76 | border: 0; |
|
76 | border: 0; | |
77 | } |
|
77 | } | |
78 |
|
78 | |||
79 | tt.descclassname { |
|
79 | tt.descclassname { | |
80 | background-color: transparent; |
|
80 | background-color: transparent; | |
81 | border: 0; |
|
81 | border: 0; | |
82 | } |
|
82 | } | |
83 |
|
83 | |||
84 | tt.xref { |
|
84 | tt.xref { | |
85 | background-color: transparent; |
|
85 | background-color: transparent; | |
86 | font-weight: bold; |
|
86 | font-weight: bold; | |
87 | border: 0; |
|
87 | border: 0; | |
88 | } |
|
88 | } | |
89 |
|
89 | |||
90 | a tt { |
|
90 | a tt { | |
91 | background-color: transparent; |
|
91 | background-color: transparent; | |
92 | font-weight: bold; |
|
92 | font-weight: bold; | |
93 | border: 0; |
|
93 | border: 0; | |
94 | color: #CA7900; |
|
94 | color: #CA7900; | |
95 | } |
|
95 | } | |
96 |
|
96 | |||
97 | a tt:hover { |
|
97 | a tt:hover { | |
98 | color: #2491CF; |
|
98 | color: #2491CF; | |
99 | } |
|
99 | } | |
100 |
|
100 | |||
101 | dl { |
|
101 | dl { | |
102 | margin-bottom: 15px; |
|
102 | margin-bottom: 15px; | |
103 | } |
|
103 | } | |
104 |
|
104 | |||
105 | dd p { |
|
105 | dd p { | |
106 | margin-top: 0px; |
|
106 | margin-top: 0px; | |
107 | } |
|
107 | } | |
108 |
|
108 | |||
109 | dd ul, dd table { |
|
109 | dd ul, dd table { | |
110 | margin-bottom: 10px; |
|
110 | margin-bottom: 10px; | |
111 | } |
|
111 | } | |
112 |
|
112 | |||
113 | dd { |
|
113 | dd { | |
114 | margin-top: 3px; |
|
114 | margin-top: 3px; | |
115 | margin-bottom: 10px; |
|
115 | margin-bottom: 10px; | |
116 | margin-left: 30px; |
|
116 | margin-left: 30px; | |
117 | } |
|
117 | } | |
118 |
|
118 | |||
119 | .refcount { |
|
119 | .refcount { | |
120 | color: #060; |
|
120 | color: #060; | |
121 | } |
|
121 | } | |
122 |
|
122 | |||
123 | dt { |
|
123 | dt { | |
124 | font-weight: bold; |
|
124 | font-weight: bold; | |
125 | padding-left: 0.5em; |
|
125 | padding-left: 0.5em; | |
126 | } |
|
126 | } | |
127 |
|
127 | |||
128 | dt:target, |
|
128 | dt:target, | |
129 | .highlight { |
|
129 | .highlight { | |
130 | background-color: #fbe54e; |
|
130 | background-color: #fbe54e; | |
131 | } |
|
131 | } | |
132 |
|
132 | |||
133 | dl.class, dl.function { |
|
133 | dl.class, dl.function { | |
134 | border-top: 2px solid #888; |
|
134 | border-top: 2px solid #888; | |
135 | } |
|
135 | } | |
136 |
|
136 | |||
137 | dl.method, dl.attribute { |
|
137 | dl.method, dl.attribute { | |
138 | border-top: 1px solid #aaa; |
|
138 | border-top: 1px solid #aaa; | |
139 | } |
|
139 | } | |
140 |
|
140 | |||
141 | dl.glossary dt { |
|
141 | dl.glossary dt { | |
142 | font-weight: bold; |
|
142 | font-weight: bold; | |
143 | font-size: 1.1em; |
|
143 | font-size: 1.1em; | |
144 | } |
|
144 | } | |
145 |
|
145 | |||
146 | pre { |
|
146 | pre { | |
147 | line-height: 120%; |
|
147 | line-height: 120%; | |
148 | } |
|
148 | } | |
149 |
|
149 | |||
150 | pre a { |
|
150 | pre a { | |
151 | color: inherit; |
|
151 | color: inherit; | |
152 | text-decoration: underline; |
|
152 | text-decoration: underline; | |
153 | } |
|
153 | } | |
154 |
|
154 | |||
155 | .first { |
|
155 | .first { | |
156 | margin-top: 0 !important; |
|
156 | margin-top: 0 !important; | |
157 | } |
|
157 | } | |
158 |
|
158 | |||
159 | div.document { |
|
159 | div.document { | |
160 | background-color: white; |
|
160 | background-color: white; | |
161 | text-align: left; |
|
161 | text-align: left; | |
162 | background-image: url(contents.png); |
|
162 | background-image: url(contents.png); | |
163 | background-repeat: repeat-x; |
|
163 | background-repeat: repeat-x; | |
164 | } |
|
164 | } | |
165 |
|
165 | |||
166 | /* |
|
166 | /* | |
167 | div.documentwrapper { |
|
167 | div.documentwrapper { | |
168 | width: 100%; |
|
168 | width: 100%; | |
169 | } |
|
169 | } | |
170 | */ |
|
170 | */ | |
171 |
|
171 | |||
172 | div.clearer { |
|
172 | div.clearer { | |
173 | clear: both; |
|
173 | clear: both; | |
174 | } |
|
174 | } | |
175 |
|
175 | |||
176 | div.related h3 { |
|
176 | div.related h3 { | |
177 | display: none; |
|
177 | display: none; | |
178 | } |
|
178 | } | |
179 |
|
179 | |||
180 | div.related ul { |
|
180 | div.related ul { | |
181 | background-image: url(navigation.png); |
|
181 | background-image: url(navigation.png); | |
182 | height: 2em; |
|
182 | height: 2em; | |
183 | list-style: none; |
|
183 | list-style: none; | |
184 | border-top: 1px solid #ddd; |
|
184 | border-top: 1px solid #ddd; | |
185 | border-bottom: 1px solid #ddd; |
|
185 | border-bottom: 1px solid #ddd; | |
186 | margin: 0; |
|
186 | margin: 0; | |
187 | padding-left: 10px; |
|
187 | padding-left: 10px; | |
188 | } |
|
188 | } | |
189 |
|
189 | |||
190 | div.related ul li { |
|
190 | div.related ul li { | |
191 | margin: 0; |
|
191 | margin: 0; | |
192 | padding: 0; |
|
192 | padding: 0; | |
193 | height: 2em; |
|
193 | height: 2em; | |
194 | float: left; |
|
194 | float: left; | |
195 | } |
|
195 | } | |
196 |
|
196 | |||
197 | div.related ul li.right { |
|
197 | div.related ul li.right { | |
198 | float: right; |
|
198 | float: right; | |
199 | margin-right: 5px; |
|
199 | margin-right: 5px; | |
200 | } |
|
200 | } | |
201 |
|
201 | |||
202 | div.related ul li a { |
|
202 | div.related ul li a { | |
203 | margin: 0; |
|
203 | margin: 0; | |
204 | padding: 0 5px 0 5px; |
|
204 | padding: 0 5px 0 5px; | |
205 | line-height: 1.75em; |
|
205 | line-height: 1.75em; | |
206 | color: #EE9816; |
|
206 | color: #EE9816; | |
207 | } |
|
207 | } | |
208 |
|
208 | |||
209 | div.related ul li a:hover { |
|
209 | div.related ul li a:hover { | |
210 | color: #3CA8E7; |
|
210 | color: #3CA8E7; | |
211 | } |
|
211 | } | |
212 |
|
212 | |||
213 | div.body { |
|
213 | div.body { | |
214 | margin: 0; |
|
214 | margin: 0; | |
215 | padding: 0.5em 20px 20px 20px; |
|
215 | padding: 0.5em 20px 20px 20px; | |
216 | } |
|
216 | } | |
217 |
|
217 | |||
218 | div.bodywrapper { |
|
218 | div.bodywrapper { | |
219 | margin: 0 240px 0 0; |
|
219 | margin: 0 240px 0 0; | |
220 | border-right: 1px solid #ccc; |
|
220 | border-right: 1px solid #ccc; | |
221 | } |
|
221 | } | |
222 |
|
222 | |||
223 | div.body a { |
|
223 | div.body a { | |
224 | text-decoration: underline; |
|
224 | text-decoration: underline; | |
225 | } |
|
225 | } | |
226 |
|
226 | |||
227 | div.sphinxsidebar { |
|
227 | div.sphinxsidebar { | |
228 | margin: 0; |
|
228 | margin: 0; | |
229 | padding: 0.5em 15px 15px 0; |
|
229 | padding: 0.5em 15px 15px 0; | |
230 | width: 210px; |
|
230 | width: 210px; | |
231 | float: right; |
|
231 | float: right; | |
232 | text-align: left; |
|
232 | text-align: left; | |
233 | /* margin-left: -100%; */ |
|
233 | /* margin-left: -100%; */ | |
234 | } |
|
234 | } | |
235 |
|
235 | |||
236 | div.sphinxsidebar h4, div.sphinxsidebar h3 { |
|
236 | div.sphinxsidebar h4, div.sphinxsidebar h3 { | |
237 | margin: 1em 0 0.5em 0; |
|
237 | margin: 1em 0 0.5em 0; | |
238 | font-size: 0.9em; |
|
238 | font-size: 0.9em; | |
239 | padding: 0.1em 0 0.1em 0.5em; |
|
239 | padding: 0.1em 0 0.1em 0.5em; | |
240 | color: white; |
|
240 | color: white; | |
241 | border: 1px solid #86989B; |
|
241 | border: 1px solid #86989B; | |
242 | background-color: #AFC1C4; |
|
242 | background-color: #AFC1C4; | |
243 | } |
|
243 | } | |
244 |
|
244 | |||
245 | div.sphinxsidebar ul { |
|
245 | div.sphinxsidebar ul { | |
246 | padding-left: 1.5em; |
|
246 | padding-left: 1.5em; | |
247 | margin-top: 7px; |
|
247 | margin-top: 7px; | |
248 | list-style: none; |
|
248 | list-style: none; | |
249 | padding: 0; |
|
249 | padding: 0; | |
250 | line-height: 130%; |
|
250 | line-height: 130%; | |
251 | } |
|
251 | } | |
252 |
|
252 | |||
253 | div.sphinxsidebar ul ul { |
|
253 | div.sphinxsidebar ul ul { | |
254 | list-style: square; |
|
254 | list-style: square; | |
255 | margin-left: 20px; |
|
255 | margin-left: 20px; | |
256 | } |
|
256 | } | |
257 |
|
257 | |||
258 | p { |
|
258 | p { | |
259 | margin: 0.8em 0 0.5em 0; |
|
259 | margin: 0.8em 0 0.5em 0; | |
260 | } |
|
260 | } | |
261 |
|
261 | |||
262 | p.rubric { |
|
262 | p.rubric { | |
263 | font-weight: bold; |
|
263 | font-weight: bold; | |
264 | } |
|
264 | } | |
265 |
|
265 | |||
266 | h1 { |
|
266 | h1 { | |
267 | margin: 0; |
|
267 | margin: 0; | |
268 | padding: 0.7em 0 0.3em 0; |
|
268 | padding: 0.7em 0 0.3em 0; | |
269 | font-size: 1.5em; |
|
269 | font-size: 1.5em; | |
270 | color: #11557C; |
|
270 | color: #11557C; | |
271 | } |
|
271 | } | |
272 |
|
272 | |||
273 | h2 { |
|
273 | h2 { | |
274 | margin: 1.3em 0 0.2em 0; |
|
274 | margin: 1.3em 0 0.2em 0; | |
275 | font-size: 1.35em; |
|
275 | font-size: 1.35em; | |
276 | padding: 0; |
|
276 | padding: 0; | |
277 | } |
|
277 | } | |
278 |
|
278 | |||
279 | h3 { |
|
279 | h3 { | |
280 |
margin: 1em 0 |
|
280 | margin: 1em 0 0.2em 0; | |
281 | font-size: 1.2em; |
|
281 | font-size: 1.2em; | |
282 | } |
|
282 | } | |
283 |
|
283 | |||
284 | h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { |
|
284 | h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { | |
285 | color: black!important; |
|
285 | color: black!important; | |
286 | } |
|
286 | } | |
287 |
|
287 | |||
288 | h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor { |
|
288 | h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor { | |
289 | display: none; |
|
289 | display: none; | |
290 | margin: 0 0 0 0.3em; |
|
290 | margin: 0 0 0 0.3em; | |
291 | padding: 0 0.2em 0 0.2em; |
|
291 | padding: 0 0.2em 0 0.2em; | |
292 | color: #aaa!important; |
|
292 | color: #aaa!important; | |
293 | } |
|
293 | } | |
294 |
|
294 | |||
295 | h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, |
|
295 | h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, | |
296 | h5:hover a.anchor, h6:hover a.anchor { |
|
296 | h5:hover a.anchor, h6:hover a.anchor { | |
297 | display: inline; |
|
297 | display: inline; | |
298 | } |
|
298 | } | |
299 |
|
299 | |||
300 | h1 a.anchor:hover, h2 a.anchor:hover, h3 a.anchor:hover, h4 a.anchor:hover, |
|
300 | h1 a.anchor:hover, h2 a.anchor:hover, h3 a.anchor:hover, h4 a.anchor:hover, | |
301 | h5 a.anchor:hover, h6 a.anchor:hover { |
|
301 | h5 a.anchor:hover, h6 a.anchor:hover { | |
302 | color: #777; |
|
302 | color: #777; | |
303 | background-color: #eee; |
|
303 | background-color: #eee; | |
304 | } |
|
304 | } | |
305 |
|
305 | |||
306 | table { |
|
306 | table { | |
307 | border-collapse: collapse; |
|
307 | border-collapse: collapse; | |
308 | margin: 0 -0.5em 0 -0.5em; |
|
308 | margin: 0 -0.5em 0 -0.5em; | |
309 | } |
|
309 | } | |
310 |
|
310 | |||
311 | table td, table th { |
|
311 | table td, table th { | |
312 | padding: 0.2em 0.5em 0.2em 0.5em; |
|
312 | padding: 0.2em 0.5em 0.2em 0.5em; | |
313 | } |
|
313 | } | |
314 |
|
314 | |||
315 | div.footer { |
|
315 | div.footer { | |
316 | background-color: #E3EFF1; |
|
316 | background-color: #E3EFF1; | |
317 | color: #86989B; |
|
317 | color: #86989B; | |
318 | padding: 3px 8px 3px 0; |
|
318 | padding: 3px 8px 3px 0; | |
319 | clear: both; |
|
319 | clear: both; | |
320 | font-size: 0.8em; |
|
320 | font-size: 0.8em; | |
321 | text-align: right; |
|
321 | text-align: right; | |
322 | } |
|
322 | } | |
323 |
|
323 | |||
324 | div.footer a { |
|
324 | div.footer a { | |
325 | color: #86989B; |
|
325 | color: #86989B; | |
326 | text-decoration: underline; |
|
326 | text-decoration: underline; | |
327 | } |
|
327 | } | |
328 |
|
328 | |||
329 | div.pagination { |
|
329 | div.pagination { | |
330 | margin-top: 2em; |
|
330 | margin-top: 2em; | |
331 | padding-top: 0.5em; |
|
331 | padding-top: 0.5em; | |
332 | border-top: 1px solid black; |
|
332 | border-top: 1px solid black; | |
333 | text-align: center; |
|
333 | text-align: center; | |
334 | } |
|
334 | } | |
335 |
|
335 | |||
336 | div.sphinxsidebar ul.toc { |
|
336 | div.sphinxsidebar ul.toc { | |
337 | margin: 1em 0 1em 0; |
|
337 | margin: 1em 0 1em 0; | |
338 | padding: 0 0 0 0.5em; |
|
338 | padding: 0 0 0 0.5em; | |
339 | list-style: none; |
|
339 | list-style: none; | |
340 | } |
|
340 | } | |
341 |
|
341 | |||
342 | div.sphinxsidebar ul.toc li { |
|
342 | div.sphinxsidebar ul.toc li { | |
343 | margin: 0.5em 0 0.5em 0; |
|
343 | margin: 0.5em 0 0.5em 0; | |
344 | font-size: 0.9em; |
|
344 | font-size: 0.9em; | |
345 | line-height: 130%; |
|
345 | line-height: 130%; | |
346 | } |
|
346 | } | |
347 |
|
347 | |||
348 | div.sphinxsidebar ul.toc li p { |
|
348 | div.sphinxsidebar ul.toc li p { | |
349 | margin: 0; |
|
349 | margin: 0; | |
350 | padding: 0; |
|
350 | padding: 0; | |
351 | } |
|
351 | } | |
352 |
|
352 | |||
353 | div.sphinxsidebar ul.toc ul { |
|
353 | div.sphinxsidebar ul.toc ul { | |
354 | margin: 0.2em 0 0.2em 0; |
|
354 | margin: 0.2em 0 0.2em 0; | |
355 | padding: 0 0 0 1.8em; |
|
355 | padding: 0 0 0 1.8em; | |
356 | } |
|
356 | } | |
357 |
|
357 | |||
358 | div.sphinxsidebar ul.toc ul li { |
|
358 | div.sphinxsidebar ul.toc ul li { | |
359 | padding: 0; |
|
359 | padding: 0; | |
360 | } |
|
360 | } | |
361 |
|
361 | |||
362 | div.admonition, div.warning { |
|
362 | div.admonition, div.warning { | |
363 | font-size: 0.9em; |
|
363 | font-size: 0.9em; | |
364 | margin: 1em 0 0 0; |
|
364 | margin: 1em 0 0 0; | |
365 | border: 1px solid #86989B; |
|
365 | border: 1px solid #86989B; | |
366 | background-color: #f7f7f7; |
|
366 | background-color: #f7f7f7; | |
367 | } |
|
367 | } | |
368 |
|
368 | |||
369 | div.admonition p, div.warning p { |
|
369 | div.admonition p, div.warning p { | |
370 | margin: 0.5em 1em 0.5em 1em; |
|
370 | margin: 0.5em 1em 0.5em 1em; | |
371 | padding: 0; |
|
371 | padding: 0; | |
372 | } |
|
372 | } | |
373 |
|
373 | |||
374 | div.admonition pre, div.warning pre { |
|
374 | div.admonition pre, div.warning pre { | |
375 | margin: 0.4em 1em 0.4em 1em; |
|
375 | margin: 0.4em 1em 0.4em 1em; | |
376 | } |
|
376 | } | |
377 |
|
377 | |||
378 | div.admonition p.admonition-title, |
|
378 | div.admonition p.admonition-title, | |
379 | div.warning p.admonition-title { |
|
379 | div.warning p.admonition-title { | |
380 | margin: 0; |
|
380 | margin: 0; | |
381 | padding: 0.1em 0 0.1em 0.5em; |
|
381 | padding: 0.1em 0 0.1em 0.5em; | |
382 | color: white; |
|
382 | color: white; | |
383 | border-bottom: 1px solid #86989B; |
|
383 | border-bottom: 1px solid #86989B; | |
384 | font-weight: bold; |
|
384 | font-weight: bold; | |
385 | background-color: #AFC1C4; |
|
385 | background-color: #AFC1C4; | |
386 | } |
|
386 | } | |
387 |
|
387 | |||
388 | div.warning { |
|
388 | div.warning { | |
389 | border: 1px solid #940000; |
|
389 | border: 1px solid #940000; | |
390 | } |
|
390 | } | |
391 |
|
391 | |||
392 | div.warning p.admonition-title { |
|
392 | div.warning p.admonition-title { | |
393 | background-color: #CF0000; |
|
393 | background-color: #CF0000; | |
394 | border-bottom-color: #940000; |
|
394 | border-bottom-color: #940000; | |
395 | } |
|
395 | } | |
396 |
|
396 | |||
397 | div.admonition ul, div.admonition ol, |
|
397 | div.admonition ul, div.admonition ol, | |
398 | div.warning ul, div.warning ol { |
|
398 | div.warning ul, div.warning ol { | |
399 | margin: 0.1em 0.5em 0.5em 3em; |
|
399 | margin: 0.1em 0.5em 0.5em 3em; | |
400 | padding: 0; |
|
400 | padding: 0; | |
401 | } |
|
401 | } | |
402 |
|
402 | |||
403 | div.versioninfo { |
|
403 | div.versioninfo { | |
404 | margin: 1em 0 0 0; |
|
404 | margin: 1em 0 0 0; | |
405 | border: 1px solid #ccc; |
|
405 | border: 1px solid #ccc; | |
406 | background-color: #DDEAF0; |
|
406 | background-color: #DDEAF0; | |
407 | padding: 8px; |
|
407 | padding: 8px; | |
408 | line-height: 1.3em; |
|
408 | line-height: 1.3em; | |
409 | font-size: 0.9em; |
|
409 | font-size: 0.9em; | |
410 | } |
|
410 | } | |
411 |
|
411 | |||
412 |
|
412 | |||
413 | a.headerlink { |
|
413 | a.headerlink { | |
414 | color: #c60f0f!important; |
|
414 | color: #c60f0f!important; | |
415 | font-size: 1em; |
|
415 | font-size: 1em; | |
416 | margin-left: 6px; |
|
416 | margin-left: 6px; | |
417 | padding: 0 4px 0 4px; |
|
417 | padding: 0 4px 0 4px; | |
418 | text-decoration: none!important; |
|
418 | text-decoration: none!important; | |
419 | visibility: hidden; |
|
419 | visibility: hidden; | |
420 | } |
|
420 | } | |
421 |
|
421 | |||
422 | h1:hover > a.headerlink, |
|
422 | h1:hover > a.headerlink, | |
423 | h2:hover > a.headerlink, |
|
423 | h2:hover > a.headerlink, | |
424 | h3:hover > a.headerlink, |
|
424 | h3:hover > a.headerlink, | |
425 | h4:hover > a.headerlink, |
|
425 | h4:hover > a.headerlink, | |
426 | h5:hover > a.headerlink, |
|
426 | h5:hover > a.headerlink, | |
427 | h6:hover > a.headerlink, |
|
427 | h6:hover > a.headerlink, | |
428 | dt:hover > a.headerlink { |
|
428 | dt:hover > a.headerlink { | |
429 | visibility: visible; |
|
429 | visibility: visible; | |
430 | } |
|
430 | } | |
431 |
|
431 | |||
432 | a.headerlink:hover { |
|
432 | a.headerlink:hover { | |
433 | background-color: #ccc; |
|
433 | background-color: #ccc; | |
434 | color: white!important; |
|
434 | color: white!important; | |
435 | } |
|
435 | } | |
436 |
|
436 | |||
437 | table.indextable td { |
|
437 | table.indextable td { | |
438 | text-align: left; |
|
438 | text-align: left; | |
439 | vertical-align: top; |
|
439 | vertical-align: top; | |
440 | } |
|
440 | } | |
441 |
|
441 | |||
442 | table.indextable dl, table.indextable dd { |
|
442 | table.indextable dl, table.indextable dd { | |
443 | margin-top: 0; |
|
443 | margin-top: 0; | |
444 | margin-bottom: 0; |
|
444 | margin-bottom: 0; | |
445 | } |
|
445 | } | |
446 |
|
446 | |||
447 | table.indextable tr.pcap { |
|
447 | table.indextable tr.pcap { | |
448 | height: 10px; |
|
448 | height: 10px; | |
449 | } |
|
449 | } | |
450 |
|
450 | |||
451 | table.indextable tr.cap { |
|
451 | table.indextable tr.cap { | |
452 | margin-top: 10px; |
|
452 | margin-top: 10px; | |
453 | background-color: #f2f2f2; |
|
453 | background-color: #f2f2f2; | |
454 | } |
|
454 | } | |
455 |
|
455 | |||
456 | img.toggler { |
|
456 | img.toggler { | |
457 | margin-right: 3px; |
|
457 | margin-right: 3px; | |
458 | margin-top: 3px; |
|
458 | margin-top: 3px; | |
459 | cursor: pointer; |
|
459 | cursor: pointer; | |
460 | } |
|
460 | } | |
461 |
|
461 | |||
462 | img.inheritance { |
|
462 | img.inheritance { | |
463 | border: 0px |
|
463 | border: 0px | |
464 | } |
|
464 | } | |
465 |
|
465 | |||
466 | form.pfform { |
|
466 | form.pfform { | |
467 | margin: 10px 0 20px 0; |
|
467 | margin: 10px 0 20px 0; | |
468 | } |
|
468 | } | |
469 |
|
469 | |||
470 | table.contentstable { |
|
470 | table.contentstable { | |
471 | width: 90%; |
|
471 | width: 90%; | |
472 | } |
|
472 | } | |
473 |
|
473 | |||
474 | table.contentstable p.biglink { |
|
474 | table.contentstable p.biglink { | |
475 | line-height: 150%; |
|
475 | line-height: 150%; | |
476 | } |
|
476 | } | |
477 |
|
477 | |||
478 | a.biglink { |
|
478 | a.biglink { | |
479 | font-size: 1.3em; |
|
479 | font-size: 1.3em; | |
480 | } |
|
480 | } | |
481 |
|
481 | |||
482 | span.linkdescr { |
|
482 | span.linkdescr { | |
483 | font-style: italic; |
|
483 | font-style: italic; | |
484 | padding-top: 5px; |
|
484 | padding-top: 5px; | |
485 | font-size: 90%; |
|
485 | font-size: 90%; | |
486 | } |
|
486 | } | |
487 |
|
487 | |||
488 | .search input[name=q] { |
|
488 | .search input[name=q] { | |
489 | max-width: 100%; |
|
489 | max-width: 100%; | |
490 | box-sizing: border-box; |
|
490 | box-sizing: border-box; | |
491 | -moz-box-sizing: border-box; |
|
491 | -moz-box-sizing: border-box; | |
492 | } |
|
492 | } | |
493 |
|
493 | |||
494 | ul.search { |
|
494 | ul.search { | |
495 | margin: 10px 0 0 20px; |
|
495 | margin: 10px 0 0 20px; | |
496 | padding: 0; |
|
496 | padding: 0; | |
497 | } |
|
497 | } | |
498 |
|
498 | |||
499 | ul.search li { |
|
499 | ul.search li { | |
500 | padding: 5px 0 5px 20px; |
|
500 | padding: 5px 0 5px 20px; | |
501 | background-image: url(file.png); |
|
501 | background-image: url(file.png); | |
502 | background-repeat: no-repeat; |
|
502 | background-repeat: no-repeat; | |
503 | background-position: 0 7px; |
|
503 | background-position: 0 7px; | |
504 | } |
|
504 | } | |
505 |
|
505 | |||
506 | ul.search li a { |
|
506 | ul.search li a { | |
507 | font-weight: bold; |
|
507 | font-weight: bold; | |
508 | } |
|
508 | } | |
509 |
|
509 | |||
510 | ul.search li div.context { |
|
510 | ul.search li div.context { | |
511 | color: #888; |
|
511 | color: #888; | |
512 | margin: 2px 0 0 30px; |
|
512 | margin: 2px 0 0 30px; | |
513 | text-align: left; |
|
513 | text-align: left; | |
514 | } |
|
514 | } | |
515 |
|
515 | |||
516 | ul.keywordmatches li.goodmatch a { |
|
516 | ul.keywordmatches li.goodmatch a { | |
517 | font-weight: bold; |
|
517 | font-weight: bold; | |
518 | } |
|
518 | } | |
519 | div.figure { |
|
519 | div.figure { | |
520 | text-align: center; |
|
520 | text-align: center; | |
521 | } |
|
521 | } | |
522 |
|
522 | |||
523 | div.versionchanged { |
|
523 | div.versionchanged { | |
524 | margin-left: 30px; |
|
524 | margin-left: 30px; | |
525 | margin-right: 30px; |
|
525 | margin-right: 30px; | |
526 | } |
|
526 | } | |
527 |
|
527 | |||
528 | span.versionmodified { |
|
528 | span.versionmodified { | |
529 | font-style: italic; |
|
529 | font-style: italic; | |
530 | } |
|
530 | } | |
531 |
|
531 | |||
532 | pre { |
|
532 | pre { | |
533 | white-space: pre-wrap; |
|
533 | white-space: pre-wrap; | |
534 | } |
|
534 | } |
General Comments 0
You need to be logged in to leave comments.
Login now