Project

General

Profile

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: leinfelder $'
12
  *      '$Date: 2007-09-10 22:15:25 -0700 (Mon, 10 Sep 2007) $'
13
  *  '$Revision: 3414 $'
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
  min-width:775px;
50
  width:expression(document.body.clientWidth < 775? "775px": "auto" );
51
  border:   0px;
52
  margin-top:	0px;
53
}
54

    
55
.iframeloginboxclass {
56
    height:   712px;
57
    /*width:600px;*/
58
    min-width:600px;
59
  	width:expression(document.body.clientWidth < 600? "600px": "auto" );
60
    border:   0px;
61
	vertical-align: top;
62
	text-align: left;
63
}
64

    
65

    
66
.iframesearchboxclass { /* not used */ }
67

    
68
.iframeleftcolclass  { 
69
    height:	712px;
70
	width:	175px;
71
}
72

    
73
.iframefooterclass   {
74
  height:   150px; 
75
  width:	100%;
76
  border:   0px;
77
  background: #124325;
78
  color: #FFFFFF;
79
}
80

    
81
.iframerightcolclass   { 
82
	background: #FFFFFF;
83
}
84

    
85
td.mapColumn {
86
  vertical-align: top;
87
}
88

    
89
.mapFrame { 
90
    /*height: 59em;*/
91
    height: 712px;
92
    width: 290px;
93
	vertical-align: top;
94
	background: #FFFFFF;
95
}
96

    
97
body > table td #mapFrame {
98
	/* used by Netscape6+/Mozilla, Opera 5+, Konqueror, Safari, OmniWeb 4.5+, ICEbrowser */
99
    width: 290px;
100
}
101

    
102
/**
103
 *  create a left margin for the document
104
 */
105

    
106
/**
107
* These are new classes adapted from sanparks L+F
108
**/
109
body {
110
	margin: 0;
111
	padding: 0;
112
	background: #B6BCB8 url("images/bg_strip.jpg") bottom left fixed repeat-x;
113
	color: #000;
114
	height: 100%;
115
	font-family: "Verdana", "Trebuchet MS", "Helvetica", "Arial", sans-serif;
116
}
117
 
118
.headermenu {
119
	background: #124325;
120
	height: 20px;
121
	color: #FFFFFF;
122
	text-decoration: none;
123
	font-weight: bold;
124
	text-align: center;
125
}	
126

    
127
.leftnav {
128
	width: 175px;
129
	margin: 0px auto;
130
	text-align: center;
131
	background: #fff url("images/navstrip.jpg") left 0px repeat-y;
132
	color: #FFFFFF;
133
}
134

    
135
h1 {
136
	text-align: left;
137
	font-family: "Helvetica", "Trebuchet MS", "Verdana", "Arial", sans-serif;
138
	font-size: 1.9em;
139
	padding: 0px 0px 12px 0px;
140
	margin: 0;
141
	padding-top: 6px;
142
	color: #f30;
143
}
144

    
145
h2 {
146
	text-align: left;
147
	font-family: "Verdana", "Helvetica", "Trebuchet MS", "Arial", sans-serif;
148
	font-size: 1.4em;
149
	padding: 0px 0px 10px 0px;
150
	margin: 0;
151
	color: #f30;
152
}
153

    
154
h3 {
155
	text-align:	left;
156
	color: #124325;
157
	background: #CFE2CF;
158
	font-size: 1.2em;
159
	border: 1px solid #124325;
160
	display: block;
161
	padding: 3px 10px;
162
	margin:10px 0 10px 0;
163
}
164

    
165
/**
166
 *  set the size and alignment etc of the top-level layout table
167
 */  
168
.templatetableclass {
169
  width:   95%; 
170
  border:   0px;
171
  padding:  0px;
172
  margin-left:   20px;
173
  margin-right:   20px;
174
}
175

    
176

    
177
/**
178
 *  set the style of the main content area and its contents
179
 */ 
180
.templatecontentareaclass {
181
	vertical-align: top;
182
  	padding: 0px;
183
  	margin: 0px;
184
	background:	#FFFFFF;
185
	color: black;
186
}
187

    
188

    
189
/**
190
 *  set the correct <td> sizes to accomodate the 
191
 *  header, footer, left and right iframes.
192
 *  NOTE: these styles apply only to each 
193
 *  container frame, *NOT* to the document in
194
 *  the iframe within it!
195
 */  
196
.templateheaderrowclass {
197
  height:   112px; 
198
/*
199
  no width allowed - uses same width as table class
200
*/
201
  border:   0px;
202
  padding:  0px;
203
  margin:   0px;
204
}
205

    
206

    
207
.templateleftcolclass {
208
  height:   100%; 
209
  width:    175px;
210
  border:   0px;
211
  padding:  0px;
212
  margin:   0px;
213
  vertical-align: top;
214
}
215

    
216

    
217
.templaterightcolclass {
218
  height:   100%; 
219
  width:    0px;
220
  border:   0px;
221
  padding:  0px;
222
  margin:   0px;
223
}
224

    
225

    
226
.templatefooterrowclass {
227
  height:   0px; 
228
/*
229
  no width allowed - uses same width as table class
230
*/
231
  border:   0px;
232
  padding:  0px;
233
  margin:   0px;
234
}
235

    
236
/**
237
 *  these override styles imported from eml css 
238
 */	 
239
.sectionnames{
240
    font-weight: bold;
241
    font-size: 16px;
242
    color: #096B79;
243
}
244

    
245
.linkedHeaderStyle{
246
    
247
    background-color: #A3DADA;
248
    padding-left: 16%;
249
 }
250

    
251
.title {
252
    font-family: Verdana, Georgia, "Times New Roman", serif;
253
    font-size: 24px; 
254
    font-weight: bold;
255
    color:black;
256
    background: inherit;
257
}
258

    
259
.secondCol{
260
    background-color: #ffffff; 
261
    font-size: 12px;
262
    padding-left: 5px;
263
}
264

    
265
.highlight  {
266
    color: #096B79;
267
    background-color: #FFFFFF;
268
    font-style: italic;    
269
    font-size: 1em; 
270
    padding-left: 10px;
271
}
272

    
273
.citation  {
274
    color: black;
275
    background-color: #FFFFFF;
276
    font-size: 1.2em; 
277
    padding-left: 10px;
278
}
279

    
280
.tablehead {
281
    color: #096B79;
282
    background: #FFFFFF;
283
    text-align: left;
284
    font-size: 14px; 
285
    font-weight: bold;
286
    border-top: solid #ffffff 15px;
287
    border-bottom: solid #dddddd 1px;
288
    padding-left: 10px;
289
    padding-top: 0px;
290
    padding-bottom: 0px;
291
}
292

    
293
th.tablehead {
294

    
295
    text-align: center;
296
    border-bottom: solid #006666 1px;
297
    margin: 0px;
298
    padding: 0px;
299
    height:  21px;
300
}
301

    
302
.tablehead_lcorner {
303
    background-position: right top;
304
    background-repeat: no-repeat;
305
    padding: 0px;
306
    margin:  0px;
307
    width:   10px;
308
    height:  21px;
309
}    
310
    
311
.tablehead_rcorner {
312
    background-position: left top;
313
    background-repeat: no-repeat;
314
    padding: 0px;
315
    margin:  0px;
316
    width:   10px;
317
    height:  21px;
318
}    
319

    
320
.lsid {
321
    text-decoration: underline; 
322
}
323

    
324
a {
325
    color: #096B79;
326
    font-weight: bold;
327
    font-size: 12px; 
328
    text-decoration: none; }
329
    
330
a:hover {
331
    color: #ECCE00;
332
    text-decoration: underline; }
333

    
334
/**
335
 *  these are used only in the metacat pages
336
 */
337

    
338
p.emphasis {
339

    
340
  font-size: 18px;
341
  color: #dd7744; 
342
  font-weight: bold;
343
  font-style:  normal;
344
}
345

    
346
.searchresultsdivider {
347
    background-color: #dddddd;   
348
}
349

    
350
/**
351
 *  these are used only in the registry skins
352
 */
353
 
354
p.searchbox {
355
    color: #096B79;
356
    font-weight: bold;
357
    font-size: 12px; 
358
    text-decoration: none; 
359
}
360

    
361
br {
362
    margin: 0px;
363
    padding: 0px;
364
}
365

    
366

    
367
.headertopmargin {
368
margin-top:    10;
369
}
370

    
371
.intro {
372
        width:   760px;
373
        margin-left:    15px;
374
}
375

    
376
textarea {
377
   width: 80%;
378
}
379

    
380
.required {
381
    font-weight: normal;
382
    font-style: italic;
383
    color: #b00000;
384
}
385

    
386
.label {
387
    font-weight: bold;
388
}
389

    
390

    
391
.emphasis {
392
    font-weight: bold;
393
    font-size: 18px;
394
    color: #000000;
395
}
396

    
397
.colorbold {
398
	font-weight: bold;
399
	color: #096B79;
400
	font-size: 12px;
401
}
402
	
403
.boldlink {
404
	font-weight: bold;
405
	font-size: 12px;
406
}
407

    
408

    
409
.redbold {
410
	font-weight: bold;
411
	color: #b00000;
412
	font-size: 12px;
413
}
414

    
415
.greenbold {
416
	font-weight: bold;
417
    background: inherit; 
418
	color: green;
419
	font-size: 12px;
420
}
421

    
422
.smalltext {
423
	font-weight: bold;
424
	font-size: 10px;
425
	vertical-align: super;
426
}
427

    
428
.largetext {
429
	font-weight: bold;
430
	font-size: 16px;
431
} 
432

    
433
.italicized {
434
	font-style: italic;
435
	font-size: 12px;
436
}
437

    
438
.regtext {
439
	font-weight: normal;
440
	font-size: 12px;
441
}
442
.sectbody {
443
	background: #DEF1F1;
444
	font-size: 12px;
445
        font-weight: bold;}
446

    
447
.sectheader {
448
	background: #A3DADA;
449
	font-size: 12px;
450
        font-weight: bold;}
451

    
452
.tables {
453
        width:   760px;
454
        margin-left:      20px;
455
        border-top: solid black 1px;
456
        border-left: solid black 1px;
457
        border-right: solid black 1px;      
458
      }
459

    
460
.hide {
461
      display:none;
462
  }
463

    
464
.showLink {
465
      cursor: pointer;
466
      cursor: hand;
467
      display:empty;
468
  }
469

    
470
.bordertop {
471
        border-top: solid black 1px;
472
      }
473
      
474
.borderbottom {
475
        border-bottom: 1px solid black;}
476
	
477
.topbottom {
478
	border-top: 1px solid black;
479
	border-bottom: 1px solid black; 
480
	}
481

    
482
.longwidth {
483
	width: 80%;
484
	}
485

    
486
.shortwidth {
487
	width: 40%;
488
	}
489
	
490
.rightCol {
491
       width:  24%;
492
       text-align: right;
493
    }
494

    
495
.centerContentBorder {
496
        padding: 10px;
497
        width: 98%;
498
        background: #F5F5F5;
499
        color: #90EE90;
500
}
501

    
502
.footerContent {
503
        margin-left: 0px;
504
        margin-right: 15px;
505
        margin-top: 15px;
506
        background: #124325;
507
        color: #FFFFFF;
508
}
(13-13/16)