1
|
/*
|
2
|
* '$RCSfile$'
|
3
|
* Purpose: Default style sheet for KNB project web pages
|
4
|
* Using this stylesheet rather than placing styles directly in
|
5
|
* the KNB web documents allows us to globally change the
|
6
|
* formatting styles of the entire site in one easy place.
|
7
|
* Copyright: 2000 Regents of the University of California and the
|
8
|
* National Center for Ecological Analysis and Synthesis
|
9
|
* Authors: Matt Jones
|
10
|
*
|
11
|
* '$Author: daigle $'
|
12
|
* '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
|
13
|
* '$Revision: 4080 $'
|
14
|
*
|
15
|
* This program is free software; you can redistribute it and/or modify
|
16
|
* it under the terms of the GNU General Public License as published by
|
17
|
* the Free Software Foundation; either version 2 of the License, or
|
18
|
* (at your option) any later version.
|
19
|
*
|
20
|
* This program is distributed in the hope that it will be useful,
|
21
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23
|
* GNU General Public License for more details.
|
24
|
*
|
25
|
* You should have received a copy of the GNU General Public License
|
26
|
* along with this program; if not, write to the Free Software
|
27
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28
|
*/
|
29
|
|
30
|
|
31
|
|
32
|
/*
|
33
|
* import eml css:
|
34
|
*/
|
35
|
|
36
|
@import url(../../../style/common/eml_xsl.css);
|
37
|
b {
|
38
|
font-weight: bold;
|
39
|
}
|
40
|
|
41
|
/**
|
42
|
* set the correct iframe sizes to accomodate the
|
43
|
* header, footer, left and right areas.
|
44
|
* NOTE: these styles apply only to each
|
45
|
* container frame, *NOT* to the document within it!
|
46
|
*/
|
47
|
.iframeheaderclass {
|
48
|
height: 112px;
|
49
|
width: 100%;
|
50
|
background: #7BB865;
|
51
|
/*
|
52
|
min-width:775px;
|
53
|
width:expression(document.body.clientWidth < 775? "775px": "auto" );
|
54
|
*/
|
55
|
border: 0px;
|
56
|
margin-top: 0px;
|
57
|
}
|
58
|
|
59
|
.iframeloginboxclass {
|
60
|
height: 880px;
|
61
|
/*width:600px;*/
|
62
|
min-width:600px;
|
63
|
width:expression(document.body.clientWidth < 600? "600px": "auto" );
|
64
|
border: 0px;
|
65
|
vertical-align: top;
|
66
|
text-align: left;
|
67
|
}
|
68
|
|
69
|
|
70
|
.iframesearchboxclass {
|
71
|
height: 880px;
|
72
|
/*width:600px;*/
|
73
|
min-width:600px;
|
74
|
width:expression(document.body.clientWidth < 600? "600px": "auto" );
|
75
|
border: 0px;
|
76
|
vertical-align: top;
|
77
|
text-align: left;
|
78
|
}
|
79
|
|
80
|
.iframeleftcolclass {
|
81
|
/*height: 100%;*/
|
82
|
height: 880px;
|
83
|
width: 175px;
|
84
|
}
|
85
|
|
86
|
/**IE hack**/
|
87
|
html>body .iframeleftcolclass {
|
88
|
height: 100%;
|
89
|
min-height: 880px;
|
90
|
}
|
91
|
|
92
|
.iframefooterclass {
|
93
|
height: 150px;
|
94
|
width: 100%;
|
95
|
border: 0px;
|
96
|
background: #124325;
|
97
|
color: #FFFFFF;
|
98
|
}
|
99
|
|
100
|
.iframefooterclass2 {
|
101
|
height: 150px;
|
102
|
width: 100%;
|
103
|
min-width: 623px;
|
104
|
/* margin-left: 20px; */
|
105
|
border: 0px;
|
106
|
background: #124325;
|
107
|
color: #FFFFFF;
|
108
|
}
|
109
|
|
110
|
.iframerightcolclass {
|
111
|
background: #FFFFFF;
|
112
|
}
|
113
|
|
114
|
td.mapColumn {
|
115
|
vertical-align: top;
|
116
|
}
|
117
|
|
118
|
.mapFrame {
|
119
|
/*height: 59em;*/
|
120
|
height: 320px;
|
121
|
width: 600px;
|
122
|
vertical-align: top;
|
123
|
background: #FFFFFF;
|
124
|
}
|
125
|
|
126
|
/*body > table td #mapFrame {
|
127
|
/* used by Netscape6+/Mozilla, Opera 5+, Konqueror, Safari, OmniWeb 4.5+, ICEbrowser */
|
128
|
/*width: 290px;*/
|
129
|
/*}*/
|
130
|
|
131
|
/**
|
132
|
* create a left margin for the document
|
133
|
*/
|
134
|
|
135
|
/**
|
136
|
* These are new classes adapted from sanparks L+F
|
137
|
**/
|
138
|
body {
|
139
|
margin: 0;
|
140
|
padding: 0;
|
141
|
background: #B6BCB8 url("images/bg_strip.jpg") bottom left fixed repeat-x;
|
142
|
color: #000;
|
143
|
height: 100%;
|
144
|
font-family: "Verdana", "Trebuchet MS", "Helvetica", "Arial", sans-serif;
|
145
|
}
|
146
|
|
147
|
#main_wrapper {
|
148
|
padding-left: 20px;
|
149
|
padding-right: 20px;
|
150
|
}
|
151
|
|
152
|
#content_wrapper {
|
153
|
background: #FFFFFF;
|
154
|
}
|
155
|
|
156
|
.headertitle {
|
157
|
font-weight: bold;
|
158
|
font-family: Helvetica, Verdana, Arial, sans-serif;
|
159
|
font-size: 1.4em;
|
160
|
color: #124326;
|
161
|
padding-left: 10px;
|
162
|
}
|
163
|
|
164
|
.headermenu {
|
165
|
background: #124325;
|
166
|
height: 20px;
|
167
|
color: #FFFFFF;
|
168
|
text-decoration: none;
|
169
|
font-weight: bold;
|
170
|
font-size: 12px;
|
171
|
text-align: center;
|
172
|
padding-left: 10px;
|
173
|
}
|
174
|
|
175
|
td.login {
|
176
|
padding-left: 5px;
|
177
|
padding-right: 5px;
|
178
|
padding-top: 5px;
|
179
|
}
|
180
|
a.login {
|
181
|
font-weight: normal;
|
182
|
}
|
183
|
input.login, select.login {
|
184
|
border: 0;
|
185
|
width: 100px;
|
186
|
color: #124325;
|
187
|
|
188
|
}
|
189
|
|
190
|
.leftnav {
|
191
|
width: 175px;
|
192
|
margin: 0px auto;
|
193
|
text-align: center;
|
194
|
/*background: transparent url("images/navstrip.jpg") left 0px repeat-y;*/
|
195
|
color: #FFFFFF;
|
196
|
}
|
197
|
|
198
|
h1 {
|
199
|
text-align: left;
|
200
|
font-family: "Helvetica", "Trebuchet MS", "Verdana", "Arial", sans-serif;
|
201
|
font-size: 1.9em;
|
202
|
padding: 0px 0px 12px 0px;
|
203
|
margin: 0;
|
204
|
padding-top: 6px;
|
205
|
color: #f30;
|
206
|
}
|
207
|
|
208
|
h2 {
|
209
|
text-align: left;
|
210
|
font-family: "Verdana", "Helvetica", "Trebuchet MS", "Arial", sans-serif;
|
211
|
font-size: 1.4em;
|
212
|
padding: 0px 0px 10px 0px;
|
213
|
margin: 0;
|
214
|
color: #f30;
|
215
|
}
|
216
|
|
217
|
h3 {
|
218
|
text-align: left;
|
219
|
color: #124325;
|
220
|
background: #CFE2CF;
|
221
|
font-family: "Verdana", "Helvetica", "Trebuchet MS", "Arial", sans-serif;
|
222
|
font-size: 1.1em;
|
223
|
border: 1px solid #124325;
|
224
|
display: block;
|
225
|
padding: 3px 10px;
|
226
|
margin:10px 0 10px 0;
|
227
|
}
|
228
|
|
229
|
/*****BEGIN SANPARKS NAV*******/
|
230
|
#nav {
|
231
|
float: left;
|
232
|
/**width: 175px;*/
|
233
|
color: #fff;
|
234
|
clear: both;
|
235
|
}
|
236
|
#nav ul.level-1 {
|
237
|
font-weight: bold;
|
238
|
list-style: none;
|
239
|
padding: 6px;
|
240
|
margin: 0;
|
241
|
line-height: 1;
|
242
|
}
|
243
|
|
244
|
#nav ul.level-1 li {
|
245
|
font-size: 1.1em;
|
246
|
/*margin: 0px 0px 5px 0px;*/
|
247
|
margin: 0px 0px 12px 0px;
|
248
|
padding: 0px 0px 0px 0px;
|
249
|
background: none;
|
250
|
}
|
251
|
|
252
|
#nav ul.level-2 {
|
253
|
font-weight: normal;
|
254
|
list-style: none;
|
255
|
padding: 0;
|
256
|
font-size: 0.9em;
|
257
|
margin: 5px 0px 0px 0px;
|
258
|
}
|
259
|
#nav ul.level-3 {
|
260
|
font-weight: normal;
|
261
|
list-style: none;
|
262
|
padding: 0;
|
263
|
font-size: 0.9em;
|
264
|
margin: 0px 0px 0px 0px;
|
265
|
}
|
266
|
#nav ul.level-2 li {
|
267
|
background: transparent url("images/horns.png") left 1px no-repeat !important;
|
268
|
padding: 0;
|
269
|
margin: 0;
|
270
|
margin: 0px 0px 2px 0px;
|
271
|
}
|
272
|
#nav ul.level-3 li {
|
273
|
background: transparent left 1px no-repeat !important;
|
274
|
padding: 0;
|
275
|
margin: 0;
|
276
|
}
|
277
|
|
278
|
#nav ul.level-1 li a {
|
279
|
color: #fff;
|
280
|
text-decoration: none;
|
281
|
display: block;
|
282
|
/*height: 1.6em;*/
|
283
|
}
|
284
|
|
285
|
#nav ul.level-2 li a {
|
286
|
font-weight: normal;
|
287
|
color: #fff;
|
288
|
text-decoration: none;
|
289
|
display: block;
|
290
|
padding-left: 18px;
|
291
|
height: 100%;
|
292
|
}
|
293
|
|
294
|
#nav ul.level-2 li a:hover, ul.level-2 li a:active {
|
295
|
background: transparent url(images/nav_bullets_orange.gif) no-repeat left 1px !important;
|
296
|
}
|
297
|
|
298
|
#nav ul.level-1 li a:hover, ul.level-1 li a:active, ul.level-2 li a:hover, ul.level-2 li a:active {
|
299
|
/* #nav li a:hover, li a:active { */
|
300
|
color: #F76501;
|
301
|
text-decoration: underline;
|
302
|
}
|
303
|
|
304
|
#nav ul li a.current {
|
305
|
background: transparent url(images/nav_bullets_orange.gif) no-repeat left 1px !important;
|
306
|
}
|
307
|
|
308
|
#nav ul li.current_cat, #nav ul li a.current_cat {
|
309
|
color: #f30;
|
310
|
}
|
311
|
|
312
|
#nav .current_home {
|
313
|
color: #f30;
|
314
|
padding-bottom: 5px;
|
315
|
display: block;
|
316
|
border-bottom: 1px solid #0E321D;
|
317
|
text-decoration: none;
|
318
|
font-size: 1.1em;
|
319
|
font-weight: bold;
|
320
|
margin-bottom: 0px;
|
321
|
margin-left: 5px;
|
322
|
margin-top: 7px;
|
323
|
margin-right: 5px;
|
324
|
}
|
325
|
|
326
|
.home a:link, .home a:visited {
|
327
|
border-bottom: 1px solid #0E321D;
|
328
|
color: #FFFFFF;
|
329
|
display: block;
|
330
|
/*font-size: 1.1em;*/
|
331
|
font-weight: bold;
|
332
|
margin: 7px 5px 0px;
|
333
|
padding-bottom: 5px;
|
334
|
text-decoration: none;
|
335
|
}
|
336
|
.home a:hover {
|
337
|
color: #FF3300;
|
338
|
text-decoration: underline;
|
339
|
}
|
340
|
/*****END SANPARKS NAV*******/
|
341
|
|
342
|
/**
|
343
|
* set the size and alignment etc of the top-level layout table
|
344
|
*/
|
345
|
.templatetableclass {
|
346
|
width: 95%;
|
347
|
border: 0px;
|
348
|
padding: 0px;
|
349
|
margin-left: 20px;
|
350
|
margin-right: 20px;
|
351
|
}
|
352
|
|
353
|
|
354
|
/**
|
355
|
* set the style of the main content area and its contents
|
356
|
*/
|
357
|
.templatecontentareaclass {
|
358
|
vertical-align: top;
|
359
|
padding: 0px;
|
360
|
margin: 0px;
|
361
|
background: #FFFFFF;
|
362
|
color: black;
|
363
|
}
|
364
|
|
365
|
|
366
|
/**
|
367
|
* set the correct <td> sizes to accomodate the
|
368
|
* header, footer, left and right iframes.
|
369
|
* NOTE: these styles apply only to each
|
370
|
* container frame, *NOT* to the document in
|
371
|
* the iframe within it!
|
372
|
*/
|
373
|
.templateheaderrowclass {
|
374
|
height: 112px;
|
375
|
/*
|
376
|
no width allowed - uses same width as table class
|
377
|
*/
|
378
|
border: 0px;
|
379
|
padding: 0px;
|
380
|
margin: 0px;
|
381
|
}
|
382
|
|
383
|
|
384
|
.templateleftcolclass {
|
385
|
height: 100%;
|
386
|
width: 175px;
|
387
|
border: 0px;
|
388
|
padding: 0px;
|
389
|
margin: 0px;
|
390
|
vertical-align: top;
|
391
|
background: transparent url("images/navstrip.jpg") left 0px repeat-y;
|
392
|
}
|
393
|
|
394
|
|
395
|
.templaterightcolclass {
|
396
|
height: 100%;
|
397
|
width: 0px;
|
398
|
border: 0px;
|
399
|
padding: 0px;
|
400
|
margin: 0px;
|
401
|
}
|
402
|
|
403
|
|
404
|
.templatefooterrowclass {
|
405
|
height: 0px;
|
406
|
/*
|
407
|
no width allowed - uses same width as table class
|
408
|
*/
|
409
|
border: 0px;
|
410
|
padding: 0px;
|
411
|
margin: 0px;
|
412
|
}
|
413
|
|
414
|
/** used in fgdc xsl **/
|
415
|
th {
|
416
|
text-align: left;
|
417
|
padding-left: 0px;
|
418
|
border-bottom: solid #dddddd 1px;
|
419
|
}
|
420
|
|
421
|
/**
|
422
|
* these override styles imported from eml css
|
423
|
*/
|
424
|
.sectionnames{
|
425
|
font-weight: bold;
|
426
|
font-size: 16px;
|
427
|
color: #096B79;
|
428
|
}
|
429
|
|
430
|
.linkedHeaderStyle{
|
431
|
|
432
|
background-color: #A3DADA;
|
433
|
padding-left: 16%;
|
434
|
}
|
435
|
|
436
|
.title {
|
437
|
font-family: Verdana, Georgia, "Times New Roman", serif;
|
438
|
font-size: 24px;
|
439
|
font-weight: bold;
|
440
|
color:black;
|
441
|
background: inherit;
|
442
|
}
|
443
|
|
444
|
.secondCol{
|
445
|
background-color: #ffffff;
|
446
|
font-size: 12px;
|
447
|
padding-left: 5px;
|
448
|
}
|
449
|
|
450
|
.highlight {
|
451
|
color: #124325;
|
452
|
background-color: #FFFFFF;
|
453
|
font-style: italic;
|
454
|
font-size: 11px;
|
455
|
padding-left: 10px;
|
456
|
}
|
457
|
|
458
|
.citation {
|
459
|
color: black;
|
460
|
background-color: #FFFFFF;
|
461
|
font-size: 1.2em;
|
462
|
padding-left: 10px;
|
463
|
}
|
464
|
|
465
|
.tablehead {
|
466
|
color: #124325;
|
467
|
background: #FFFFFF;
|
468
|
text-align: left;
|
469
|
font-size: 14px;
|
470
|
font-weight: bold;
|
471
|
border-top: solid #ffffff 15px;
|
472
|
border-bottom: solid #dddddd 1px;
|
473
|
padding-left: 10px;
|
474
|
padding-top: 0px;
|
475
|
padding-bottom: 0px;
|
476
|
}
|
477
|
|
478
|
th.tablehead {
|
479
|
|
480
|
text-align: center;
|
481
|
border-bottom: solid #006666 1px;
|
482
|
margin: 0px;
|
483
|
padding: 0px;
|
484
|
height: 21px;
|
485
|
}
|
486
|
|
487
|
.tablehead_lcorner {
|
488
|
background-position: right top;
|
489
|
background-repeat: no-repeat;
|
490
|
padding: 0px;
|
491
|
margin: 0px;
|
492
|
width: 10px;
|
493
|
height: 21px;
|
494
|
}
|
495
|
|
496
|
.tablehead_rcorner {
|
497
|
background-position: left top;
|
498
|
background-repeat: no-repeat;
|
499
|
padding: 0px;
|
500
|
margin: 0px;
|
501
|
width: 10px;
|
502
|
height: 21px;
|
503
|
}
|
504
|
|
505
|
.lsid {
|
506
|
text-decoration: underline;
|
507
|
}
|
508
|
|
509
|
a {
|
510
|
color: #124325;
|
511
|
font-weight: bold;
|
512
|
font-size: 12px;
|
513
|
text-decoration: none; }
|
514
|
|
515
|
a:hover {
|
516
|
color: #ECCE00;
|
517
|
text-decoration: underline; }
|
518
|
|
519
|
/**
|
520
|
* these are used only in the metacat pages
|
521
|
*/
|
522
|
|
523
|
p.emphasis {
|
524
|
|
525
|
font-size: 14px;
|
526
|
color: #dd7744;
|
527
|
font-weight: bold;
|
528
|
font-style: normal;
|
529
|
}
|
530
|
|
531
|
.searchresultsdivider {
|
532
|
background-color: #FFFFFF;
|
533
|
border-top: thin dashed;
|
534
|
color: #DDDDDD;
|
535
|
}
|
536
|
|
537
|
/**
|
538
|
* these are used only in the registry skins
|
539
|
*/
|
540
|
|
541
|
p.searchbox {
|
542
|
color: #096B79;
|
543
|
font-weight: bold;
|
544
|
font-size: 12px;
|
545
|
text-decoration: none;
|
546
|
}
|
547
|
|
548
|
br {
|
549
|
margin: 0px;
|
550
|
padding: 0px;
|
551
|
}
|
552
|
|
553
|
|
554
|
.headertopmargin {
|
555
|
margin-top: 10;
|
556
|
}
|
557
|
|
558
|
.intro {
|
559
|
width: 760px;
|
560
|
margin-left: 15px;
|
561
|
}
|
562
|
|
563
|
textarea {
|
564
|
width: 80%;
|
565
|
}
|
566
|
|
567
|
.required {
|
568
|
font-weight: normal;
|
569
|
font-style: italic;
|
570
|
font-size: 11px;
|
571
|
/*color: #b00000;*/
|
572
|
color: #124325;
|
573
|
}
|
574
|
|
575
|
.label {
|
576
|
font-weight: bold;
|
577
|
}
|
578
|
|
579
|
|
580
|
.emphasis {
|
581
|
font-weight: bold;
|
582
|
font-size: 18px;
|
583
|
color: #000000;
|
584
|
}
|
585
|
|
586
|
.colorbold {
|
587
|
font-weight: bold;
|
588
|
color: #096B79;
|
589
|
font-size: 12px;
|
590
|
}
|
591
|
|
592
|
.boldlink {
|
593
|
font-weight: bold;
|
594
|
font-size: 12px;
|
595
|
}
|
596
|
|
597
|
|
598
|
.redbold {
|
599
|
font-weight: bold;
|
600
|
color: #b00000;
|
601
|
font-size: 12px;
|
602
|
}
|
603
|
|
604
|
.greenbold {
|
605
|
font-weight: bold;
|
606
|
background: inherit;
|
607
|
color: green;
|
608
|
font-size: 12px;
|
609
|
}
|
610
|
|
611
|
.smalltext {
|
612
|
font-weight: bold;
|
613
|
font-size: 10px;
|
614
|
vertical-align: super;
|
615
|
}
|
616
|
|
617
|
.largetext {
|
618
|
font-weight: bold;
|
619
|
font-size: 16px;
|
620
|
}
|
621
|
|
622
|
.italicized {
|
623
|
font-style: italic;
|
624
|
font-size: 12px;
|
625
|
}
|
626
|
|
627
|
.regtext {
|
628
|
font-weight: normal;
|
629
|
font-size: 12px;
|
630
|
}
|
631
|
.sectbody {
|
632
|
background: #FFFFFF;
|
633
|
font-size: 12px;
|
634
|
font-weight: bold;}
|
635
|
|
636
|
.sectheader {
|
637
|
background: #CFE2CF;
|
638
|
font-size: 12px;
|
639
|
font-weight: bold;}
|
640
|
|
641
|
.tables {
|
642
|
width: 760px;
|
643
|
margin-left: 20px;
|
644
|
border-top: solid black 1px;
|
645
|
border-left: solid black 1px;
|
646
|
border-right: solid black 1px;
|
647
|
}
|
648
|
|
649
|
.hide {
|
650
|
display:none;
|
651
|
}
|
652
|
|
653
|
.showLink {
|
654
|
cursor: pointer;
|
655
|
cursor: hand;
|
656
|
display:empty;
|
657
|
}
|
658
|
|
659
|
.bordertop {
|
660
|
border-top: solid black 1px;
|
661
|
}
|
662
|
|
663
|
.borderbottom {
|
664
|
border-bottom: 1px solid black;}
|
665
|
|
666
|
.topbottom {
|
667
|
border-top: 1px solid black;
|
668
|
border-bottom: 1px solid black;
|
669
|
}
|
670
|
|
671
|
.longwidth {
|
672
|
width: 80%;
|
673
|
}
|
674
|
|
675
|
.shortwidth {
|
676
|
width: 40%;
|
677
|
}
|
678
|
|
679
|
.rightCol {
|
680
|
width: 24%;
|
681
|
text-align: right;
|
682
|
}
|
683
|
|
684
|
.centerContentBorder {
|
685
|
padding: 0px;
|
686
|
width: 98%;
|
687
|
background: #FFFFFF;
|
688
|
color: #FFFFFF;
|
689
|
}
|
690
|
|
691
|
.footerContent {
|
692
|
background: #124325;
|
693
|
color: #FFFFFF;
|
694
|
}
|
695
|
|
696
|
.footerContent a {
|
697
|
color: #FFFFFF;
|
698
|
}
|