New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
default.css in branches/DEV_r1879_FCM/NEMOGCM/TOOLS/doc/manuals/html/sphinx/_static – NEMO

source: branches/DEV_r1879_FCM/NEMOGCM/TOOLS/doc/manuals/html/sphinx/_static/default.css @ 1972

Last change on this file since 1972 was 1972, checked in by flavoni, 14 years ago

Add TOOLS directory and scripts to compile with FCM, see ticket: #685

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