Project

General

Profile

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