1 | /* |
---|
2 | * default.css_t |
---|
3 | * ~~~~~~~~~~~~~ |
---|
4 | * |
---|
5 | * Sphinx stylesheet -- default theme. |
---|
6 | * |
---|
7 | * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. |
---|
8 | * :license: BSD, see LICENSE for details. |
---|
9 | * |
---|
10 | */ |
---|
11 | |
---|
12 | @import url("basic.css"); |
---|
13 | |
---|
14 | /* -- page layout ----------------------------------------------------------- */ |
---|
15 | |
---|
16 | body { |
---|
17 | font-family: Verdana, Arial, Helvetica, sans-serif; |
---|
18 | font-size: 14px; |
---|
19 | background-color: #ffffff; |
---|
20 | color: #000; |
---|
21 | margin: 0; |
---|
22 | padding: 0; |
---|
23 | } |
---|
24 | |
---|
25 | div.document { |
---|
26 | background-color: white; |
---|
27 | } |
---|
28 | |
---|
29 | div.documentwrapper { |
---|
30 | float: left; |
---|
31 | width: 100%; |
---|
32 | } |
---|
33 | |
---|
34 | div.bodywrapper { |
---|
35 | margin: 0 0 0 230px; |
---|
36 | } |
---|
37 | |
---|
38 | div.body { |
---|
39 | background-color: #ffffff; |
---|
40 | color: #333333; |
---|
41 | padding: 0 20px 30px 20px; |
---|
42 | } |
---|
43 | div.bodywrapper { |
---|
44 | margin: 0 230px 0 0; |
---|
45 | } |
---|
46 | |
---|
47 | div.footer { |
---|
48 | color: #646464; |
---|
49 | width: 100%; |
---|
50 | padding: 9px 0 9px 0; |
---|
51 | text-align: center; |
---|
52 | font-size: 75%; |
---|
53 | } |
---|
54 | |
---|
55 | div.footer a { |
---|
56 | color: #646464; |
---|
57 | text-decoration: underline; |
---|
58 | } |
---|
59 | |
---|
60 | div.related { |
---|
61 | background-color: #5e3905; |
---|
62 | line-height: 30px; |
---|
63 | color: #ffffff; |
---|
64 | } |
---|
65 | |
---|
66 | div.related a { |
---|
67 | color: #ffffff; |
---|
68 | } |
---|
69 | |
---|
70 | div.sphinxsidebar { |
---|
71 | float: right; |
---|
72 | } |
---|
73 | |
---|
74 | div.sphinxsidebar h3 { |
---|
75 | font-family: 'Verdana, Arial, Helvetica, sans-serif'; |
---|
76 | color: #663e05; |
---|
77 | font-size: 1.4em; |
---|
78 | font-weight: normal; |
---|
79 | margin: 0; |
---|
80 | padding: 0; |
---|
81 | } |
---|
82 | |
---|
83 | div.sphinxsidebar h3 a { |
---|
84 | color: #333333; |
---|
85 | } |
---|
86 | |
---|
87 | div.sphinxsidebar h4 { |
---|
88 | font-family: 'Verdana, Arial, Helvetica, sans-serif'; |
---|
89 | color: #663e05; |
---|
90 | font-size: 1.3em; |
---|
91 | font-weight: normal; |
---|
92 | margin: 5px 0 0 0; |
---|
93 | padding: 0; |
---|
94 | } |
---|
95 | |
---|
96 | div.sphinxsidebar p { |
---|
97 | color: #333333; |
---|
98 | } |
---|
99 | |
---|
100 | div.sphinxsidebar p.topless { |
---|
101 | margin: 5px 10px 10px 10px; |
---|
102 | } |
---|
103 | |
---|
104 | div.sphinxsidebar ul { |
---|
105 | margin: 10px; |
---|
106 | padding: 0; |
---|
107 | color: #ffffff; |
---|
108 | } |
---|
109 | |
---|
110 | div.sphinxsidebar a { |
---|
111 | color: #333333; |
---|
112 | } |
---|
113 | |
---|
114 | div.sphinxsidebar input { |
---|
115 | border: 1px solid #98dbcc; |
---|
116 | font-family: sans-serif; |
---|
117 | font-size: 1em; |
---|
118 | } |
---|
119 | |
---|
120 | |
---|
121 | |
---|
122 | /* -- hyperlink styles ------------------------------------------------------ */ |
---|
123 | |
---|
124 | a { |
---|
125 | color: #ffac59; |
---|
126 | text-decoration: none; |
---|
127 | } |
---|
128 | |
---|
129 | a:visited { |
---|
130 | color: #ffac59; |
---|
131 | text-decoration: none; |
---|
132 | } |
---|
133 | |
---|
134 | a:hover { |
---|
135 | text-decoration: underline; |
---|
136 | } |
---|
137 | |
---|
138 | |
---|
139 | |
---|
140 | /* -- body styles ----------------------------------------------------------- */ |
---|
141 | |
---|
142 | div.body h1, |
---|
143 | div.body h2, |
---|
144 | div.body h3, |
---|
145 | div.body h4, |
---|
146 | div.body h5, |
---|
147 | div.body h6 { |
---|
148 | font-family: 'Verdana, Arial, Helvetica, sans-serif'; |
---|
149 | background-color: #ffffff; |
---|
150 | font-weight: normal; |
---|
151 | color: #663e05; |
---|
152 | margin: 20px -20px 10px -20px; |
---|
153 | padding: 3px 0 3px 10px; |
---|
154 | } |
---|
155 | |
---|
156 | div.body h1 { margin-top: 0; font-size: 140%; } |
---|
157 | div.body h2 { font-size: 120%; } |
---|
158 | div.body h3 { font-size: 100%; } |
---|
159 | div.body h4 { font-size: 90%; } |
---|
160 | div.body h5 { font-size: 80%; } |
---|
161 | div.body h6 { font-size: 70%; } |
---|
162 | |
---|
163 | a.headerlink { |
---|
164 | color: #c60f0f; |
---|
165 | font-size: 0.8em; |
---|
166 | padding: 0 4px 0 4px; |
---|
167 | text-decoration: none; |
---|
168 | } |
---|
169 | |
---|
170 | a.headerlink:hover { |
---|
171 | background-color: #c60f0f; |
---|
172 | color: white; |
---|
173 | } |
---|
174 | |
---|
175 | div.body p, div.body dd, div.body li { |
---|
176 | text-align: justify; |
---|
177 | line-height: 130%; |
---|
178 | } |
---|
179 | |
---|
180 | div.admonition p.admonition-title + p { |
---|
181 | display: inline; |
---|
182 | } |
---|
183 | |
---|
184 | div.admonition p { |
---|
185 | margin-bottom: 5px; |
---|
186 | } |
---|
187 | |
---|
188 | div.admonition pre { |
---|
189 | margin-bottom: 5px; |
---|
190 | } |
---|
191 | |
---|
192 | div.admonition ul, div.admonition ol { |
---|
193 | margin-bottom: 5px; |
---|
194 | } |
---|
195 | |
---|
196 | div.note { |
---|
197 | background-color: #eee; |
---|
198 | border: 1px solid #ccc; |
---|
199 | } |
---|
200 | |
---|
201 | div.seealso { |
---|
202 | background-color: #ffc; |
---|
203 | border: 1px solid #ff6; |
---|
204 | } |
---|
205 | |
---|
206 | div.topic { |
---|
207 | background-color: #eee; |
---|
208 | } |
---|
209 | |
---|
210 | div.warning { |
---|
211 | background-color: #ffe4e4; |
---|
212 | border: 1px solid #f66; |
---|
213 | } |
---|
214 | |
---|
215 | p.admonition-title { |
---|
216 | display: inline; |
---|
217 | } |
---|
218 | |
---|
219 | p.admonition-title:after { |
---|
220 | content: ":"; |
---|
221 | } |
---|
222 | |
---|
223 | pre { |
---|
224 | padding: 5px; |
---|
225 | background-color: #eeffcc; |
---|
226 | color: #333333; |
---|
227 | line-height: 120%; |
---|
228 | border: 1px solid #ac9; |
---|
229 | border-left: none; |
---|
230 | border-right: none; |
---|
231 | } |
---|
232 | |
---|
233 | tt { |
---|
234 | background-color: #ecf0f3; |
---|
235 | padding: 0 1px 0 1px; |
---|
236 | font-size: 0.95em; |
---|
237 | } |
---|
238 | |
---|
239 | th { |
---|
240 | background-color: #ede; |
---|
241 | } |
---|
242 | |
---|
243 | .warning tt { |
---|
244 | background: #efc2c2; |
---|
245 | } |
---|
246 | |
---|
247 | .note tt { |
---|
248 | background: #d6d6d6; |
---|
249 | } |
---|
250 | |
---|
251 | .viewcode-back { |
---|
252 | font-family: sans-serif; |
---|
253 | } |
---|
254 | |
---|
255 | div.viewcode-block:target { |
---|
256 | background-color: #f4debf; |
---|
257 | border-top: 1px solid #ac9; |
---|
258 | border-bottom: 1px solid #ac9; |
---|
259 | } |
---|
260 | |
---|
261 | /* Custom Menu Bar ---------------------------------------- */ |
---|
262 | |
---|
263 | ul.topnav { |
---|
264 | position:relative; |
---|
265 | top:0; |
---|
266 | left:0; |
---|
267 | list-style: none; |
---|
268 | padding: 0 ; |
---|
269 | margin: 0; |
---|
270 | float: left; |
---|
271 | width: 100%; |
---|
272 | height:40px; |
---|
273 | background: #563404; |
---|
274 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#563404', endColorstr='#663e05'); /* for IE */ |
---|
275 | background:-webkit-gradient(linear, left top, left bottom, from(#563404), to(#663e05)); /* for webkit browsers */ |
---|
276 | background:-moz-linear-gradient(top, #563404, #663e05); /* for firefox 3.6+ */ |
---|
277 | font-size: 1.2em; |
---|
278 | } |
---|
279 | ul.topnav li { |
---|
280 | float: left; |
---|
281 | margin: 0; |
---|
282 | padding: 0 15px 0 0; |
---|
283 | position: relative; /*--Declare X and Y axis base--*/ |
---|
284 | } |
---|
285 | ul.topnav li a{ |
---|
286 | padding: 6px 10px 10px 20px; |
---|
287 | color: #fff; |
---|
288 | display: block; |
---|
289 | text-decoration: none; |
---|
290 | float: left; |
---|
291 | |
---|
292 | } |
---|
293 | ul.topnav li a:hover{ |
---|
294 | background: transparent; |
---|
295 | color:#ffcd0b; |
---|
296 | } |
---|
297 | ul.topnav li span { /*--Drop down trigger styles--*/ |
---|
298 | width: 17px; |
---|
299 | height: 35px; |
---|
300 | float: left; |
---|
301 | } |
---|
302 | ul.topnav li span.subhover {background-position: center bottom; cursor: pointer;} /*--Hover effect for trigger--*/ |
---|
303 | ul.topnav li ul.subnav { |
---|
304 | list-style: none; |
---|
305 | position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/ |
---|
306 | left: 20px; top: 35px; |
---|
307 | margin: 0; padding: 0; |
---|
308 | display: none; |
---|
309 | float: left; |
---|
310 | width: 170px; |
---|
311 | -moz-border-radius-bottomleft: 5px; |
---|
312 | -moz-border-radius-bottomright: 5px; |
---|
313 | -webkit-border-bottom-left-radius: 5px; |
---|
314 | -webkit-border-bottom-right-radius: 5px; |
---|
315 | border: 1px solid #663e05; |
---|
316 | z-index:1000000; |
---|
317 | |
---|
318 | |
---|
319 | } |
---|
320 | ul.topnav li ul.subnav li{ |
---|
321 | margin: 0; padding: 0; |
---|
322 | |
---|
323 | clear: both; |
---|
324 | width: 125px; |
---|
325 | } |
---|
326 | html ul.topnav li ul.subnav li a { |
---|
327 | font-size:.8em; |
---|
328 | float: left; |
---|
329 | width: 155px; |
---|
330 | background: #663e05; |
---|
331 | padding:3px 5px 3px 10px ; |
---|
332 | |
---|
333 | } |
---|
334 | html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/ |
---|
335 | |
---|
336 | } |
---|
337 | |
---|
338 | /* Custom Header ---------------------------------------- */ |
---|
339 | |
---|
340 | #wrapper { |
---|
341 | margin: 0; |
---|
342 | padding: 0; |
---|
343 | width: 100%; |
---|
344 | } |
---|
345 | |
---|
346 | #myheader { |
---|
347 | color: #333; |
---|
348 | width: 100%; |
---|
349 | height: 220px; |
---|
350 | margin: 0; |
---|
351 | background: #FFFFFF ; |
---|
352 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#fff196'); /* for IE */ |
---|
353 | background:-webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#fff196)); /* for webkit browsers */ |
---|
354 | background:-moz-linear-gradient(top, #FFFFFF, #fff196 ); /* for firefox 3.6+ */ |
---|
355 | } |
---|
356 | |
---|
357 | .hleft{ |
---|
358 | float:left; |
---|
359 | margin:0; |
---|
360 | width:380px; |
---|
361 | height:180px; |
---|
362 | background:url(images/zoo-title.png) no-repeat;} |
---|
363 | |
---|
364 | h1.title{width:290px;position:relative;top:115px;left:15px;font-size:1.4em;letter-spacing:2px;color:#727272;text-transform:uppercase;padding:5px; |
---|
365 | background:#999999; |
---|
366 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e0e0e0', endColorstr='#bbbbbb'); /* for IE */ |
---|
367 | background:-webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#bbbbbb)); /* for webkit browsers */ |
---|
368 | background:-moz-linear-gradient(top, #e0e0e0, #bbbbbb); /* for firefox 3.6+ */ |
---|
369 | -moz-border-radius: 5px; |
---|
370 | -webkit-border-radius: 5px; |
---|
371 | -webkit-border-radius: 5px; |
---|
372 | border: 1px solid #d4d4d4; |
---|
373 | text-align:center; |
---|
374 | text-shadow: 1px 1px 1px #E0E0E0; |
---|
375 | } |
---|
376 | |
---|
377 | .orange{color:#ffaa17;display:block;padding:5px;} |
---|
378 | |
---|
379 | .hright{ |
---|
380 | float:right; |
---|
381 | margin:0; |
---|
382 | width:533px; |
---|
383 | background:url(images/zoo-banner.png) no-repeat; |
---|
384 | height:180px; |
---|
385 | } |
---|
386 | |
---|
387 | /* Custom Footer ---------------------------------------- */ |
---|
388 | |
---|
389 | #footer { |
---|
390 | clear:both; |
---|
391 | width:99.99%; |
---|
392 | color: #333; |
---|
393 | background: #ffcd0b; |
---|
394 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcd0b', endColorstr='#ee920c'); /* for IE */ |
---|
395 | background:-webkit-gradient(linear, left top, left bottom, from(#ffcd0b), to(#ee920c)); /* for webkit browsers */ |
---|
396 | background:-moz-linear-gradient(top, #ffcd0b, #ee920c ); /* for firefox 3.6+ */ |
---|
397 | margin: 0; |
---|
398 | padding: 0; |
---|
399 | } |
---|
400 | |
---|
401 | #footer p{ |
---|
402 | padding: 0; |
---|
403 | text-align: center; |
---|
404 | margin: 0; |
---|
405 | } |
---|
406 | |
---|
407 | #footer a{ |
---|
408 | color: #563404; |
---|
409 | font-weight: bold; |
---|
410 | font-size: 14px; |
---|
411 | text-decoration: none; |
---|
412 | } |
---|
413 | |
---|
414 | #footer .icon{ |
---|
415 | display: none; |
---|
416 | } |
---|
417 | |
---|
418 | #footer div{ |
---|
419 | text-align: center; |
---|
420 | } |
---|
421 | |
---|
422 | |
---|
423 | #footer .menuContainer{ |
---|
424 | width: 750px; margin-left: auto; margin-right: auto; |
---|
425 | } |
---|
426 | |
---|
427 | #footer .menuItemList{ |
---|
428 | margin-top: 1em; |
---|
429 | float: left; |
---|
430 | padding-left: 1em; |
---|
431 | padding-right: 1em; |
---|
432 | border-left: 1px dashed #563404;; |
---|
433 | } |
---|
434 | |
---|
435 | #footer .menuItemList a{ |
---|
436 | font-weight: normal; |
---|
437 | } |
---|