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