source: main/waeup.kofa/trunk/docs/source/_static/default.css @ 12872

Last change on this file since 12872 was 11475, checked in by Henrik Bettermann, 11 years ago

Texts must not be justified.

File size: 4.0 KB
Line 
1/*
2 * default.css
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 * Customized by Henrik Bettermann
11 */
12
13@import url("basic.css");
14
15/* -- page layout ----------------------------------------------------------- */
16
17body {
18    font-family: sans-serif;
19    font-size: 100%;
20    background-color: #11303d;
21    color: #000;
22    margin: 0;
23    padding: 0;
24}
25
26div.document {
27    background-color: #1c4e63;
28}
29
30div.documentwrapper {
31    float: left;
32    width: 100%;
33}
34
35div.bodywrapper {
36    margin: 0 0 0 230px;
37}
38
39div.body {
40    background-color: #ffffff;
41    color: #000000;
42    padding: 0 20px 30px 20px;
43}
44
45div.footer {
46    color: #ffffff;
47    width: 100%;
48    padding: 9px 0 9px 0;
49    text-align: center;
50    font-size: 75%;
51}
52
53div.footer a {
54    color: #ffffff;
55    text-decoration: underline;
56}
57
58div.related {
59    background-color: #133f52;
60    line-height: 30px;
61    color: #ffffff;
62}
63
64div.related a {
65    color: #ffffff;
66}
67
68div.sphinxsidebar {
69}
70
71div.sphinxsidebar h3 {
72    font-family: 'Trebuchet MS', sans-serif;
73    color: #ffffff;
74    font-size: 1.4em;
75    font-weight: normal;
76    margin: 0;
77    padding: 0;
78}
79
80div.sphinxsidebar h3 a {
81    color: #ffffff;
82}
83
84div.sphinxsidebar h4 {
85    font-family: 'Trebuchet MS', sans-serif;
86    color: #ffffff;
87    font-size: 1.3em;
88    font-weight: normal;
89    margin: 5px 0 0 0;
90    padding: 0;
91}
92
93div.sphinxsidebar p {
94    color: #ffffff;
95}
96
97div.sphinxsidebar p.topless {
98    margin: 5px 10px 10px 10px;
99}
100
101div.sphinxsidebar ul {
102    margin: 10px;
103    padding: 0;
104    color: #ffffff;
105}
106
107div.sphinxsidebar a {
108    color: #98dbcc;
109}
110
111div.sphinxsidebar input {
112    border: 1px solid #98dbcc;
113    font-family: sans-serif;
114    font-size: 1em;
115}
116
117
118
119/* -- hyperlink styles ------------------------------------------------------ */
120
121a {
122    color: #355f7c;
123    text-decoration: none;
124}
125
126a:visited {
127    color: #355f7c;
128    text-decoration: none;
129}
130
131a:hover {
132    text-decoration: underline;
133}
134
135
136
137/* -- body styles ----------------------------------------------------------- */
138
139div.body h1,
140div.body h2,
141div.body h3,
142div.body h4,
143div.body h5,
144div.body h6 {
145    font-family: 'Trebuchet MS', sans-serif;
146    background-color: #f2f2f2;
147    font-weight: normal;
148    color: #20435c;
149    border-bottom: 1px solid #ccc;
150    margin: 20px -20px 10px -20px;
151    padding: 3px 0 3px 10px;
152}
153
154div.body h1 { margin-top: 0; font-size: 200%; }
155div.body h2 { font-size: 160%; }
156div.body h3 { font-size: 140%; }
157div.body h4 { font-size: 120%; }
158div.body h5 { font-size: 110%; }
159div.body h6 { font-size: 100%; }
160
161a.headerlink {
162    color: #c60f0f;
163    font-size: 0.8em;
164    padding: 0 4px 0 4px;
165    text-decoration: none;
166}
167
168a.headerlink:hover {
169    background-color: #c60f0f;
170    color: white;
171}
172
173div.body p, div.body dd, div.body li {
174    text-align: left;
175    line-height: 130%;
176}
177
178div.admonition p.admonition-title + p {
179    display: inline;
180}
181
182div.admonition p {
183    margin-bottom: 5px;
184}
185
186div.admonition pre {
187    margin-bottom: 5px;
188}
189
190div.admonition ul, div.admonition ol {
191    margin-bottom: 5px;
192}
193
194div.note {
195    background-color: #eee;
196    border: 1px solid #ccc;
197}
198
199div.seealso {
200    background-color: #ffc;
201    border: 1px solid #ff6;
202}
203
204div.topic {
205    background-color: #eee;
206}
207
208div.warning {
209    background-color: #ffe4e4;
210    border: 1px solid #f66;
211}
212
213p.admonition-title {
214    display: inline;
215}
216
217p.admonition-title:after {
218    content: ":";
219}
220
221pre {
222    padding: 5px;
223    background-color: #eeffcc;
224    color: #333333;
225    line-height: 120%;
226    border: 1px solid #ac9;
227    border-left: none;
228    border-right: none;
229}
230
231tt {
232    background-color: #ecf0f3;
233    padding: 0 1px 0 1px;
234    font-size: 0.95em;
235}
236
237th {
238    background-color: #ede;
239}
240
241.warning tt {
242    background: #efc2c2;
243}
244
245.note tt {
246    background: #d6d6d6;
247}
248
249.viewcode-back {
250    font-family: sans-serif;
251}
252
253div.viewcode-block:target {
254    background-color: #f4debf;
255    border-top: 1px solid #ac9;
256    border-bottom: 1px solid #ac9;
257}
Note: See TracBrowser for help on using the repository browser.