Project

General

Profile

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