Project

General

Profile

1 2258 jones
 /*
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$'
12
  *      '$Date$'
13
  *  '$Revision$'
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 3780 daigle
@import url(../../../style/common/eml_xsl.css);
37 5983 leinfelder
38
/*
39
* override the default eml properties to match esa look and feel
40
*/
41
.group {
42
	min-width: 0px;
43
}
44
.subGroup_border {
45
	border: none;
46
}
47
.group_border {
48
	border: none;
49
}
50
td {
51
	color: #555555;
52
}
53
div {
54
	color: #555555;
55
}
56
th {
57
	-moz-background-clip:border;
58
	-moz-background-inline-policy:continuous;
59
	-moz-background-origin:padding;
60
	background:#FFFFFF none repeat scroll 0 0;
61
	border-bottom:1px solid #DDDDDD;
62
	border-top:15px solid #FFFFFF;
63
	color:#096B79;
64
	font-size:14px;
65
	font-weight:bold;
66
	padding-bottom:0;
67
	padding-left:10px;
68
	padding-top:0;
69
	text-align:left;
70
}
71
.rowodd {
72
	background-color:#FFFFFF;
73
	color:#096B79;
74
	font-size:1em;
75
	font-style:italic;
76
	padding-left:10px;
77
}
78
h3 {
79
	color: #096B79;
80 5985 leinfelder
}
81
a:link, a:visited {
82
	color:#096B79;
83
	font-size:12px;
84
	font-weight:bold;
85
	text-decoration:underline;
86
}
87
88
89 2538 bowdish
b {
90
font-weight: bold;
91
}
92 2258 jones
93
/**
94
 *  set the correct iframe sizes to accomodate the
95
 *  header, footer, left and right areas.
96
 *  NOTE: these styles apply only to each
97
 *  container frame, *NOT* to the document within it!
98
 */
99
.iframeheaderclass {
100
  height:   155px;
101 2886 tyburczy
  width:    98%;
102 2258 jones
  border:   0px;
103
  margin:   0px;
104
  margin-left: 10px;
105
}
106
107
.iframesearchboxclass { /* not used */ }
108
.iframeleftcolclass  { /* not used */ }
109
.iframerightcolclass { /* not used */ }
110
.iframefooterclass   { /* not used */ }
111
112
/**
113 2797 tyburczy
 *  create a left margin for the document
114
 */
115
116
body { margin-left: 70px; }
117
118
/**
119 2258 jones
 *  set the size and alignment etc of the top-level layout table
120
 */
121
.templatetableclass {
122
  width:   100%;
123
  border:   0px;
124
  padding:  0px;
125
  margin:   0px;
126
}
127
128
129
/**
130
 *  set the style of the main content area and its contents
131
 */
132
.templatecontentareaclass {
133
  border:   0px;
134
  padding:  0px;
135
  margin:   0px;
136
}
137
138
139
/**
140
 *  set the correct <td> sizes to accomodate the
141
 *  header, footer, left and right iframes.
142
 *  NOTE: these styles apply only to each
143
 *  container frame, *NOT* to the document in
144
 *  the iframe within it!
145
 */
146
.templateheaderrowclass {
147
  height:   155px;
148
/*
149
  no width allowed - uses same width as table class
150
*/
151
  border:   0px;
152
  padding:  0px;
153
  margin:   0px;
154
}
155
156
157
.templateleftcolclass {
158
  height:   100%;
159
  width:    0px;
160
  border:   0px;
161
  padding:  0px;
162
  margin:   0px;
163
}
164
165
166
.templaterightcolclass {
167
  height:   100%;
168
  width:    0px;
169
  border:   0px;
170
  padding:  0px;
171
  margin:   0px;
172
}
173
174
175
.templatefooterrowclass {
176
  height:   0px;
177
/*
178
  no width allowed - uses same width as table class
179
*/
180
  border:   0px;
181
  padding:  0px;
182
  margin:   0px;
183
}
184
185
186
/**
187
 *  these override styles imported from eml css
188
 */
189
190 2410 sgarg
191
192
.sectionnames{
193
    font-weight: bold;
194
    font-size: 16px;
195
    color: #096B79;
196
}
197 2433 sgarg
198
.linkedHeaderStyle{
199
200
    background-color: #A3DADA;
201
    padding-left: 16%;
202
 }
203
204 2258 jones
.title {
205
    font-family: Georgia, Times New Roman, Times, serif;
206
    color:      black;
207
    background: white;
208
    font-size: 24px;
209
    font-weight: bold;
210
}
211 2439 sgarg
212 2433 sgarg
.secondCol{
213
    background-color: #ffffff;
214
    font-size: 12px;
215
    padding-left: 5px;
216
}
217 2258 jones
218
.highlight  {
219 2410 sgarg
    color: #096B79;
220 2494 sgarg
    background-color: #FFFFFF;
221
    font-style: italic;
222 2258 jones
    font-size: 1em;
223
    padding-left: 10px;
224
}
225
226 2843 jones
.citation  {
227
    color: black;
228
    background-color: #FFFFFF;
229 5983 leinfelder
    font-size: 1.1em;
230 2843 jones
    padding-left: 10px;
231
}
232
233 2258 jones
.tablehead {
234 2410 sgarg
    color: #096B79;
235 2494 sgarg
    background: #FFFFFF;
236 2258 jones
    text-align: left;
237
    font-size: 14px;
238
    font-weight: bold;
239 2843 jones
    border-top: solid #ffffff 15px;
240
    border-bottom: solid #dddddd 1px;
241 2494 sgarg
    padding-left: 10px;
242 2258 jones
    padding-top: 0px;
243
    padding-bottom: 0px;
244
}
245
246
th.tablehead {
247
248
    text-align: center;
249
    border-bottom: solid #006666 1px;
250
    margin: 0px;
251
    padding: 0px;
252
    height:  21px;
253
}
254
255
.tablehead_lcorner {
256
    background-position: right top;
257
    background-repeat: no-repeat;
258
    padding: 0px;
259
    margin:  0px;
260
    width:   10px;
261
    height:  21px;
262
}
263
264
.tablehead_rcorner {
265
    background-position: left top;
266
    background-repeat: no-repeat;
267
    padding: 0px;
268
    margin:  0px;
269
    width:   10px;
270
    height:  21px;
271
}
272
273 2843 jones
.lsid {
274
    text-decoration: underline;
275
}
276
277 2258 jones
a {
278
    color: #096B79;
279
    font-weight: bold;
280
    font-size: 12px;
281 2410 sgarg
    text-decoration: underline; }
282 2258 jones
283
a:hover {
284
    color: #ECCE00;
285
    text-decoration: underline; }
286
287
/**
288
 *  these are used only in the metacat pages
289
 */
290
291
p.emphasis {
292
293
  font-size: 18px;
294
  color: #dd7744;
295
  font-weight: bold;
296
  font-style:  normal;
297
}
298
299
.searchresultsdivider {
300 5985 leinfelder
    background-color: #dddddd;
301
    height: 1px;
302 2258 jones
}
303
304
/**
305
 *  these are used only in the registry skins
306
 */
307 2410 sgarg
308
309
310
311
p.searchbox {
312 2258 jones
    color: #096B79;
313
    font-weight: bold;
314
    font-size: 12px;
315
    text-decoration: none;
316
}
317
318
br {
319
    margin: 0px;
320
    padding: 0px;
321
}
322
323 2410 sgarg
324
.headertopmargin {
325
margin-top:    10;
326
}
327
328
.intro {
329 2539 sgarg
        width:   760px;
330
        margin-left:    15px;
331 2410 sgarg
}
332
333 2258 jones
textarea {
334
   width: 80%;
335
}
336
337
.required {
338
    font-weight: bold;
339
    color: #b00000;
340
}
341
342
.label {
343
    font-weight: bold;
344
}
345 2351 sgarg
346
347
.emphasis {
348
    font-weight: bold;
349 2410 sgarg
    font-size: 18px;
350
    color: #000000;
351 2351 sgarg
}
352
353 2410 sgarg
.colorbold {
354
	font-weight: bold;
355
	color: #096B79;
356
	font-size: 12px;
357
}
358
359 2351 sgarg
.boldlink {
360
	font-weight: bold;
361
	font-size: 12px;
362
}
363
364
365
.redbold {
366
	font-weight: bold;
367
	color: #b00000;
368
	font-size: 12px;
369
}
370
371
.greenbold {
372
	font-weight: bold;
373 2410 sgarg
	color: #096B79;
374 2351 sgarg
	font-size: 12px;
375
}
376
377
.smalltext {
378
	font-weight: bold;
379
	font-size: 10px;
380 2410 sgarg
	vertical-align: super;
381 2351 sgarg
}
382
383 2410 sgarg
.largetext {
384
	font-weight: bold;
385
	font-size: 16px;
386
}
387
388 2351 sgarg
.italicized {
389
	font-style: italic;
390
	font-size: 12px;
391
}
392
393
.regtext {
394 2410 sgarg
	font-weight: normal;
395 2351 sgarg
	font-size: 12px;
396
}
397 2410 sgarg
.sectbody {
398
	background: #DEF1F1;
399
	font-size: 12px;
400
        font-weight: bold;}
401
402
.sectheader {
403
	background: #A3DADA;
404
	font-size: 12px;
405
        font-weight: bold;}
406
407 2351 sgarg
.tables {
408 2410 sgarg
        width:   760px;
409 2539 sgarg
        margin-left:      20px;
410 2410 sgarg
        border-top: solid black 1px;
411
        border-left: solid black 1px;
412
        border-right: solid black 1px;
413
      }
414 2351 sgarg
415 2410 sgarg
.hide {
416
      display:none;
417
  }
418
419 2782 sgarg
.showLink {
420
      cursor: pointer;
421
      cursor: hand;
422 2686 sgarg
      display:empty;
423
  }
424
425 2410 sgarg
.bordertop {
426
        border-top: solid black 1px;
427
      }
428
429
.borderbottom {
430
        border-bottom: 1px solid black;}
431
432
.topbottom {
433
	border-top: 1px solid black;
434
	border-bottom: 1px solid black;
435
	}
436
437
.longwidth {
438
	width: 80%;
439
	}
440
441
.shortwidth {
442
	width: 40%;
443
	}
444
445
.rightCol {
446
       width:  24%;
447
       text-align: right;
448
    }