source: branches/PublicaMundi_David-devel/workshop/_themes/sphinx13/static/sphinx13.css @ 686

Last change on this file since 686 was 686, checked in by nbozon, 9 years ago

added workshop directory at root

  • Property svn:executable set to *
File size: 7.0 KB
Line 
1/*
2 * sphinx13.css
3 * ~~~~~~~~~~~~
4 *
5 * Sphinx stylesheet -- sphinx13 theme.
6 *
7 * :copyright: Copyright 2007-2015 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
16body {
17    font-family: 'Open Sans', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva',
18                 'Verdana', sans-serif;
19    font-size: 14px;
20    text-align: center;
21    background-image: url(bodybg.png);
22    color: black;
23    padding: 0;
24    border-right: 1px solid #0a507a;
25    border-left: 1px solid #0a507a;
26
27    margin: 0 auto;
28    min-width: 780px;
29    max-width: 1080px;
30}
31
32.pageheader {
33    background-image: url(headerbg.png);
34    text-align: left;
35    padding: 10px 15px;
36}
37
38.pageheader ul {
39    float: right;
40    color: white;
41    list-style-type: none;
42    padding-left: 0;
43    margin-top: 30px;
44    margin-right: 10px;
45}
46
47.pageheader li {
48    float: left;
49    margin: 0 0 0 10px;
50}
51
52.pageheader li a {
53    border-radius: 1px;
54    padding: 8px 12px;
55    color: #f9f9f0;
56    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
57}
58
59.pageheader li a:hover {
60    background-color: #f9f9f0;
61    color: #0a507a;
62    text-shadow: none;
63}
64
65div.document {
66    background-color: white;
67    text-align: left;
68}
69
70div.bodywrapper {
71    margin: 0 240px 0 0;
72    border-right: 1px solid #0a507a;
73}
74
75div.body {
76    margin: 0;
77    padding: 0.5em 20px 20px 20px;
78}
79
80div.related {
81    font-size: 1em;
82    color: white;
83}
84
85div.related ul {
86    background-image: url(relbg.png);
87    height: 1.9em;
88    border-top: 1px solid #002e50;
89    border-bottom: 1px solid #002e50;
90}
91
92div.related ul li {
93    margin: 0 5px 0 0;
94    padding: 0;
95    float: left;
96}
97
98div.related ul li.right {
99    float: right;
100    margin-right: 5px;
101}
102
103div.related ul li a {
104    margin: 0;
105    padding: 0 5px 0 5px;
106    line-height: 1.75em;
107    color: #f9f9f0;
108    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
109}
110
111div.related ul li a:hover {
112    color: white;
113    /*text-decoration: underline;*/
114    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.5);
115}
116
117div.sphinxsidebarwrapper {
118    position: relative;
119    top: 0px;
120    padding: 0;
121}
122
123div.sphinxsidebar {
124    margin: 0;
125    padding: 0 15px 15px 0;
126    width: 210px;
127    float: right;
128    font-size: 1em;
129    text-align: left;
130}
131
132div.sphinxsidebar .logo {
133    font-size: 1.8em;
134    color: #0A507A;
135    font-weight: 300;
136    text-align: center;
137}
138
139div.sphinxsidebar .logo img {
140    vertical-align: middle;
141}
142
143div.sphinxsidebar input {
144    border: 1px solid #aaa;
145    font-family: 'Open Sans', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva',
146                 'Verdana', sans-serif;
147    font-size: 1em;
148}
149
150div.sphinxsidebar h3 {
151    font-size: 1.5em;
152    border-top: 1px solid #0a507a;
153    margin-top: 1em;
154    margin-bottom: 0.5em;
155    padding-top: 0.5em;
156}
157
158div.sphinxsidebar h4 {
159    font-size: 1.2em;
160    margin-bottom: 0;
161}
162
163div.sphinxsidebar h3, div.sphinxsidebar h4 {
164    margin-right: -15px;
165    margin-left: -15px;
166    padding-right: 14px;
167    padding-left: 14px;
168    color: #333;
169    font-weight: 300;
170    /*text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.4);*/
171}
172
173div.sphinxsidebarwrapper > h3:first-child {
174    margin-top: 0.5em;
175    border: none;
176}
177
178div.sphinxsidebar h3 a {
179    color: #333;
180}
181
182div.sphinxsidebar ul {
183    color: #444;
184    margin-top: 7px;
185    padding: 0;
186    line-height: 130%;
187}
188
189div.sphinxsidebar ul ul {
190    margin-left: 20px;
191    list-style-image: url(listitem.png);
192}
193
194div.footer {
195    background-image: url(footerbg.png);
196    color: #ccc;
197    text-shadow: 0 0 .2px rgba(255, 255, 255, 0.8);
198    padding: 3px 8px 3px 0;
199    clear: both;
200    font-size: 0.8em;
201    text-align: right;
202}
203
204/* no need to make a visible link to Sphinx on the Sphinx page */
205div.footer a {
206    color: #ccc;
207}
208
209/* -- body styles ----------------------------------------------------------- */
210
211p {   
212    margin: 0.8em 0 0.5em 0;
213}
214
215a {
216    color: #A2881D;
217    text-decoration: none;
218}
219
220a:hover {
221    color: #E1C13F;
222}
223
224div.body a {
225    text-decoration: underline;
226}
227
228h1 {
229    margin: 10px 0 0 0;
230    font-size: 2.4em;
231    color: #0A507A;
232    font-weight: 300;
233}
234
235h2 {
236    margin: 1.em 0 0.2em 0;
237    font-size: 1.5em;
238    font-weight: 300;
239    padding: 0;
240    color: #174967;
241}
242
243h3 {
244    margin: 1em 0 -0.3em 0;
245    font-size: 1.3em;
246    font-weight: 300;
247}
248
249div.body h1 a, div.body h2 a, div.body h3 a, div.body h4 a, div.body h5 a, div.body h6 a {
250    text-decoration: none;
251}
252
253div.body h1 a tt, div.body h2 a tt, div.body h3 a tt, div.body h4 a tt, div.body h5 a tt, div.body h6 a tt {
254    color: #0A507A !important;
255    font-size: inherit !important;
256}
257
258a.headerlink {
259    color: #0A507A !important;
260    font-size: 12px;
261    margin-left: 6px;
262    padding: 0 4px 0 4px;
263    text-decoration: none !important;
264    float: right;
265}
266
267a.headerlink:hover {
268    background-color: #ccc;
269    color: white!important;
270}
271
272cite, code, tt {
273    font-family: 'Consolas', 'DejaVu Sans Mono',
274                 'Bitstream Vera Sans Mono', monospace;
275    font-size: 14px;
276    letter-spacing: -0.02em;
277}
278
279tt {
280    background-color: #f2f2f2;
281    border: 1px solid #ddd;
282    border-radius: 2px;
283    color: #333;
284    padding: 1px;
285}
286
287tt.descname, tt.descclassname, tt.xref {
288    border: 0;
289}
290
291hr {
292    border: 1px solid #abc;
293    margin: 2em;
294}
295
296a tt {
297    border: 0;
298    color: #a2881d;
299}
300
301a tt:hover {
302    color: #e1c13f;
303}
304
305pre {
306    font-family: 'Consolas', 'DejaVu Sans Mono',
307                 'Bitstream Vera Sans Mono', monospace;
308    font-size: 13px;
309    letter-spacing: 0.015em;
310    line-height: 120%;
311    padding: 0.5em;
312    border: 1px solid #ccc;
313    border-radius: 2px;
314    background-color: #f8f8f8;
315}
316
317pre a {
318    color: inherit;
319    text-decoration: underline;
320}
321
322td.linenos pre {
323    padding: 0.5em 0;
324}
325
326div.quotebar {
327    background-color: #f8f8f8;
328    max-width: 250px;
329    float: right;
330    padding: 0px 7px;
331    border: 1px solid #ccc;
332    margin-left: 1em;
333}
334
335div.topic {
336    background-color: #f8f8f8;
337}
338
339table {
340    border-collapse: collapse;
341    margin: 0 -0.5em 0 -0.5em;
342}
343
344table td, table th {
345    padding: 0.2em 0.5em 0.2em 0.5em;
346}
347
348div.admonition, div.warning {
349    font-size: 0.9em;
350    margin: 1em 0 1em 0;
351    border: 1px solid #86989B;
352    border-radius: 2px;
353    background-color: #f7f7f7;
354    padding: 0;
355}
356
357div.admonition p, div.warning p {
358    margin: 0.5em 1em 0.5em 1em;
359    padding: 0;
360}
361
362div.admonition pre, div.warning pre {
363    margin: 0.4em 1em 0.4em 1em;
364}
365
366div.admonition p.admonition-title,
367div.warning p.admonition-title {
368    margin-top: 1em;
369    padding-top: 0.5em;
370    font-weight: bold;
371}
372
373div.warning {
374    border: 1px solid #940000;
375/*    background-color: #FFCCCF;*/
376}
377
378div.warning p.admonition-title {
379}
380
381div.admonition ul, div.admonition ol,
382div.warning ul, div.warning ol {
383    margin: 0.1em 0.5em 0.5em 3em;
384    padding: 0;
385}
386
387.viewcode-back {
388    font-family: 'Open Sans', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva',
389                 'Verdana', sans-serif;
390}
391
392div.viewcode-block:target {
393    background-color: #f4debf;
394    border-top: 1px solid #ac9;
395    border-bottom: 1px solid #ac9;
396}
Note: See TracBrowser for help on using the repository browser.

Search

Context Navigation

ZOO Sponsors

http://www.zoo-project.org/trac/chrome/site/img/geolabs-logo.pnghttp://www.zoo-project.org/trac/chrome/site/img/neogeo-logo.png http://www.zoo-project.org/trac/chrome/site/img/apptech-logo.png http://www.zoo-project.org/trac/chrome/site/img/3liz-logo.png http://www.zoo-project.org/trac/chrome/site/img/gateway-logo.png

Become a sponsor !

Knowledge partners

http://www.zoo-project.org/trac/chrome/site/img/ocu-logo.png http://www.zoo-project.org/trac/chrome/site/img/gucas-logo.png http://www.zoo-project.org/trac/chrome/site/img/polimi-logo.png http://www.zoo-project.org/trac/chrome/site/img/fem-logo.png http://www.zoo-project.org/trac/chrome/site/img/supsi-logo.png http://www.zoo-project.org/trac/chrome/site/img/cumtb-logo.png

Become a knowledge partner

Related links

http://zoo-project.org/img/ogclogo.png http://zoo-project.org/img/osgeologo.png