NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

root/tracks/trunk/tracks/css/styles.css

Revision 82 (checked in by haines, 12 years ago)

Initial commit

Line 
1 body {
2     font-family: helvetica,sans-serf;
3     font-size: 0.9em;
4     margin: 0 0.25em;
5     padding: 0;
6 }
7
8 div {
9     background-color: #eef;
10 }
11
12 img {
13     border: none;
14 }
15
16 table {
17     border-collapse: collapse;
18     border: #000 solid 2px;
19     text-align: center;
20 }
21
22 thead {
23     border-bottom: #000 solid 2px;
24 }
25
26 thead td, thead th {
27     border: #000 solid 1px;
28 }
29
30 td, th {
31     border: #000 solid 1px;
32 }
33
34 h1,h2,h3,h4,h5,h6 {
35     margin: 0.25em 0;
36     padding: 0;
37 }
38
39 /* page banner */
40 #header {
41     border: #000 solid 2px;
42     padding: 0.25em 0.5em;
43 }
44
45 #header h1 {
46     text-transform: capitalize;
47 }
48
49 #navigation {
50     border: #000 solid 2px;
51     margin: 0.25em 0;
52     padding: 0.25em 0.5em;
53 }
54
55 /* page navigation div */
56 /* Every top-level item in this has it's margin-top: -0.25em to
57    get it to display properly */
58 #nav {
59     margin: 0.25em 0;
60     padding: 0.5em 0.5em;
61     height: 1em;
62 }
63
64 #main {
65     border: #000 solid 2px;
66     padding: 0.25em 0.5em;
67     margin: 0.25em 0;
68 }
69
70 #spacer {
71     border: #000 solid 1px;
72     margin-top: 5px;
73 }
74
75 /* Navigation drop-down menus/lists */
76 #navMenus, #navMenus ul {
77     list-style: none;
78     margin: 0;
79     padding: 0;
80 }
81 /* Each list-item in the top-level list */
82 #navMenus li {
83     margin: 0;
84     padding: 0;
85     float: left;
86     position: relative;
87     margin-right: 1em;
88 }
89 /* Do not show the lists by default*/
90 #navMenus li ul {
91     display: none;
92     position: absolute;
93     left: 0;
94     top: 1em;
95     border: #000 solid 1px;
96     background-color: #EEE;
97 }
98 /* Bottom-level list-items */
99 #navMenus li ul li {
100     width: 8em;
101     margin-left: 0.25em;
102 }
103
104 /* Show the list on hover over the top-level list-items */
105 /*
106 #navMenus li:hover ul {
107     display: block;
108 }
109 */
110    
111 #navMenus a:link, #navMenus a:visited {
112     color: #00D;
113     text-decoration: none;
114 }
115 /* END navigation drop-down menus/lists */
116
117 /* all tables in #main div */
118 #main table {
119     font-size: 0.9em;
120     margin: 0.5em 0;
121 }
122
123 #main table td.green_td {
124 }
125
126 #main table td.yellow_td {
127     background-color: #FF0;
128     color: #000;
129     font-weight: bold;
130 }
131
132 #main table td.red_td {
133     background-color: #C00;
134     color: #FFF;
135     font-weight: bold;
136 }
137
138 #main thead {
139     background-color: #AAA;
140 }
141
142 /* footer */
143 #footer {
144     border: #000 solid 2px;
145     margin: 0.25em 0;
146     padding: 0;
147     padding: 0.25em 0.5em;
148     text-align: center;
149 }
150
151 #footer p {
152     margin: 0.25em 0;
153 }
154
155 /* <p /> containing the javascript clock */
156 #clockbar {
157     margin: 0;
158     padding: 0;
159     text-align: right;
160 }
161
162 /* www3 valididation images */
163 .w3 img {
164     border: none;
165 }
166
167 /* #deployments table */
168 #main td, #main th {
169     padding: 0.2em;
170 }
171
172 #main > a, a.log_filename {
173     font-size: 0.8em;
174 }
175
176 #deployments td {
177     border: #000 solid 1px;
178 }
179
180 tr.odd {
181     background-color: #CAE1FF;
182 }
183
184 tr.even {
185     background-color: #B9C9FE;
186 }
187
188 /* Class for hover effect for current table row.
189 * Must be below any CSS for setting <tr /> background-color or it will not
190 * work */
191 .hoverTr tbody tr:hover {
192     background-color: #FFF;
193 }
194
195 /* Used for sortable_us.js javascript library */
196 a.sortheader:link, a.sortheader:visited {
197     color: #00F;
198     text-decoration: none;
199 }
200 a.sortheader:hover {
201     color: #FF0;
202 }
203
204 /*
205 #deployments thead a:link, #deployments thead a:visited {
206     color: #00F;
207     text-decoration: none;
208 }
209 */
210
211 #deployments a.red {
212     color: #C00;
213     font-weight: bold;
214     font-size: 2em;
215 }
216
217 /* tables with class=history */
218 .history thead td {
219     font-weight: bold;
220 }
221
222 /* row color */
223 .history tr.odd {
224     background-color: #CAE1FF;
225 }
226
227 /* row color */
228 .history tr.even {
229     background-color: #B9C9FE;
230 }
231
232 /* Use to make an element disappear */
233 .hide {
234     display: none;
235 }
236
237 /* Notes */
238 #notes {
239     background-color: #CCC;
240 }
241
242 #notes thead td {
243     font-weight: bold;
244 }
245
246 #notes tbody td {
247     border: #000 solid 1px;
248     vertical-align: top;
249 }
250
251 td.noteText {
252     background-color: #FFF;
253     width: 45em;
254     text-align: left;
255     font-family: monospace;
256     font-size: 1.25em;
257 }
258
259 /* new notes are denoted by bold-facing the font of the date and coloring it
260 * red */
261 td.red {
262     color: #C00;
263     font-weight: bold;
264 }
265
266 td.black {
267     background-color: #000;
268 }
269
270 #note_form td, #note_form th {
271     border: none;
272 }
273
274 #note_form th {
275     vertical-align: top;
276     text-align: right;
277 }
278
279 #note_form td.left {
280     text-align: left;
281 }
282
283 #note_form textarea {
284     width: 30em;
285     height: 10em;
286     margin-right: 1em;
287 }
288
289 #daySelectorFormTable, #daySelectorFormTable th, #daySelectorFormTable td {
290     border: none;
291 }
292
293 #kmzs, #kmzs th, #kmzs td, #kmzs thead {
294     border: #000 solid 1px;
295 }
296
297 /* Deployment links */
298 p.nav {
299     margin: 0;
300     vertical-align: super;
301 }
302
303 p.nav span {
304     font-weight: bold;
305 }
306
307 p.nav a {
308     margin: 0 0.5em;
309     text-transform: capitalize;
310     color: #00F;
311 }
312
313 /* Table imagery */
314 table.imagery td, table.imagery th {
315     border: #000 2px solid;
316 }
317
318 table.imagery th {
319     background-color: #AAA;
320 }
321
322 table.imagery td {
323     background-color: #FFF;
324 }
325
326 img.img {
327     border: #000 solid 2px;
328 }
329
330 /* Styling for surface dialogs */
331 td.dialog {
332     font-family: monospace;
333     text-align: left;
334     background-color: #FFF;
335     font-size: 1.2em;
336 }
337
338 /* Surface dialog "top" links */
339 td.dialog a:visited, td.dialog a:link {
340     font-size: 1.5em;
341     font-weight: bold;
342     color: #00D;
343 }
344
345 .kmz a {
346     text-decoration: none;
347 }
348
349 .kmz a span {
350     vertical-align: 60%;
351 }
352
353 /* Segment table formatting */
354 td.project {
355     font-weight: bold;
356 }
357
358 tr.dive {
359     font-weight: bold;
360 }
361
362 /* Segment imagery styles */
363 #segment img.thumb {
364     height: 192px;
365 }
366
367 /* Surface Sensor plot styles */
368 table.sensorImagery th, table.sensorImagery td {
369     padding: 5em;
370 }
371
372 table.sensorImagery th {
373     background-color: #CCC;
374 }
375
376 table.sensorImagery td {
377     background-color: #FFF;
378 }
379
380 #segHeaderDiv p {
381     font-size: 1.5em;
382     font-weight: bold;
383 }
384
385 .ui-datepicker {
386     font-size: 90% !important;
387 }
388
389 table.imagery img.map {
390     height: 256px;
391 }
392
393 #image img.map {
394     height: 768px;
395 }
396
Note: See TracBrowser for help on using the browser.