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.
style.css in vendors/fcm/current/doc/user_guide – NEMO

source: vendors/fcm/current/doc/user_guide/style.css @ 1977

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

importing fcm vendor

File size: 3.2 KB
Line 
1/**********************************************************************
2 * CSS for FCM documents.
3 *
4 **********************************************************************/
5
6
7/**********************************************************************
8 * FOREGROUND COLOUR
9 *
10 **********************************************************************/
11a:link
12{
13    color: blue;
14}
15
16a:visited
17{
18    color: purple;
19}
20
21a:active,
22a:hover
23{
24    color: blue;
25}
26
27code,
28kbd,
29var
30{
31    color: navy;
32}
33
34
35/**********************************************************************
36 * BACKGROUND COLOUR
37 *
38 **********************************************************************/
39h1,
40h2,
41h3,
42h4,
43h5,
44code,
45kbd,
46pre,
47samp,
48.image
49{
50    background: #eee;
51}
52
53
54/**********************************************************************
55 * BORDER
56 *
57 **********************************************************************/
58dl,
59kbd,
60pre,
61samp,
62.image
63{
64    border: thin solid #ddd;
65}
66
67
68/**********************************************************************
69 * FONT
70 *
71 **********************************************************************/
72body
73{
74    font-family: sans-serif;
75}
76
77code,
78kbd,
79samp,
80var
81{
82    font-family: monospace;
83}
84
85h1
86{
87    font-size: 200%;
88}
89
90h2
91{
92    font-size: 175%;
93}
94
95h3
96{
97    font-size: 150%;
98}
99
100h4,
101h5
102{
103    font-size: medium;
104}
105
106address
107{
108    font-size: small;
109}
110
111address,
112var
113{
114    font-style: normal;
115}
116
117h1,
118h2,
119h3,
120h4,
121h5,
122dt
123{
124    font-weight: bold;
125}
126
127
128/**********************************************************************
129 * CLASSIFICATION
130 *
131 **********************************************************************/
132#fcm-content ul li
133{
134    list-style: none;
135}
136
137code,
138kbd,
139samp
140{
141    white-space: nowrap;
142}
143
144
145/**********************************************************************
146 * TEXT DECORATION
147 *
148 **********************************************************************/
149a:link
150{
151    text-decoration: underline;
152}
153
154a:visited
155{
156    text-decoration: none;
157}
158
159a:active,
160a:hover
161{
162    text-decoration: underline;
163}
164
165
166/**********************************************************************
167 * TEXT ALIGNMENT
168 *
169 **********************************************************************/
170address,
171h1
172{
173    text-align: center;
174}
175
176#ukmo-logo,
177#document-info address
178{
179    text-align: right;
180}
181
182
183/**********************************************************************
184 * DISPLAY
185 *
186 **********************************************************************/
187
188/**********************************************************************
189 * BORDER-RADIUS
190 *
191 **********************************************************************/
192h1,
193h2,
194h3,
195h4,
196h5,
197dl,
198pre,
199.image
200{
201    border-radius: 0.5em;
202    -moz-border-radius: 0.5em;
203}
204
205
206/**********************************************************************
207 * MARGIN
208 *
209 **********************************************************************/
210address
211{
212    margin: 1em;
213}
214
215img
216{
217    margin: 0.25em;
218}
219
220dl,
221dd
222{
223    margin-bottom: 0.5em;
224}
225
226dl
227{
228    margin-top: 0.5em;
229}
230
231
232/**********************************************************************
233 * PADDING
234 *
235 **********************************************************************/
236h1,
237h2,
238h3,
239h4,
240h5
241{
242    padding: 0.4em;
243}
244
245dl,
246li,
247pre,
248.image
249{
250    padding: 0.2em;
251}
252
253code,
254kbd,
255samp,
256var
257{
258    padding-left: 0.2em;
259    padding-right: 0.2em;
260}
Note: See TracBrowser for help on using the repository browser.