1
|
/*
|
2
|
* '$RCSfile: default.css,v $'
|
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: jones $'
|
12
|
* '$Date: 2009-03-05 18:56:15 $'
|
13
|
* '$Revision: 1.32 $'
|
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
|
/******************************************************************************/
|
34
|
/** COMMON : USED BY EML STYLESHEETS AND OTHER PAGES **/
|
35
|
/******************************************************************************/
|
36
|
/******************************************************************************/
|
37
|
|
38
|
/*** styles that override html tags ***/
|
39
|
|
40
|
body {
|
41
|
padding: 0px;
|
42
|
margin: 10px;
|
43
|
color: #333333;
|
44
|
background-color: #ffffff;
|
45
|
font-weight: normal;
|
46
|
font-size: 12px;
|
47
|
font-family: Verdana,Arial,Helvetica,sans-serif;
|
48
|
}
|
49
|
|
50
|
a {
|
51
|
color: #669933;
|
52
|
font-weight: bold;
|
53
|
font-size: 12px;
|
54
|
text-decoration: none;
|
55
|
text-align: left;
|
56
|
}
|
57
|
|
58
|
a:hover {
|
59
|
color: #ff9933;
|
60
|
text-decoration: underline;
|
61
|
}
|
62
|
|
63
|
h1 {
|
64
|
font-size: 24px;
|
65
|
font-family: Georgia, Times New Roman, Times, serif;
|
66
|
text-align: center;
|
67
|
}
|
68
|
|
69
|
h2 {
|
70
|
font-size: 20px;
|
71
|
font-family: Georgia, Times New Roman, Times, serif;
|
72
|
}
|
73
|
|
74
|
h3 {
|
75
|
font-size: 16px;
|
76
|
font-family: Georgia, Times New Roman, Times, serif;
|
77
|
text-align: center;
|
78
|
}
|
79
|
|
80
|
td {
|
81
|
font-size: 12px;
|
82
|
line-height: 1.5;
|
83
|
}
|
84
|
|
85
|
p {
|
86
|
margin: 5px;
|
87
|
}
|
88
|
|
89
|
p + p {
|
90
|
margin: 5px;
|
91
|
text-indent: 2em;
|
92
|
}
|
93
|
|
94
|
p.label {
|
95
|
color: #333333;
|
96
|
font-weight: bold;
|
97
|
}
|
98
|
|
99
|
p.contact {
|
100
|
color: #333333;
|
101
|
padding: 1em;
|
102
|
font-size: 0.75em;
|
103
|
font-weight: normal;
|
104
|
font-style: italic;
|
105
|
}
|
106
|
|
107
|
|
108
|
/*** custom styles ***/
|
109
|
|
110
|
#mainTableAligmentStyle {
|
111
|
width: 100%;
|
112
|
}
|
113
|
|
114
|
.mainContainerTableStyle {
|
115
|
width: 100%;
|
116
|
}
|
117
|
|
118
|
.title {
|
119
|
font-family: Georgia, Times New Roman, Times, serif;
|
120
|
color: #0247A8;
|
121
|
font-size: 24px;
|
122
|
font-weight: bold;
|
123
|
}
|
124
|
|
125
|
.subtitle {
|
126
|
font-family: Verdana,Arial,Helvetica,sans-serif;
|
127
|
font-size: 12px;
|
128
|
font-weight: bold;
|
129
|
color: #666666;
|
130
|
margin-left: 3em;
|
131
|
margin-top: 0.5em;
|
132
|
margin-bottom: 2em;
|
133
|
font-weight: normal;
|
134
|
}
|
135
|
|
136
|
.sectiontitle {
|
137
|
font-family: Verdana,Arial,Helvetica,sans-serif;
|
138
|
font-size: 12px;
|
139
|
font-weight: bold;
|
140
|
color: #666666;
|
141
|
margin-top: 1em;
|
142
|
margin-bottom: 0.25em;
|
143
|
}
|
144
|
|
145
|
.tabledefault {
|
146
|
background: white;
|
147
|
color: #555555;
|
148
|
width: 100%;
|
149
|
font-size: 12px;
|
150
|
line-height: 1.2;
|
151
|
left-padding: 5px;
|
152
|
right-padding: 5px;
|
153
|
}
|
154
|
|
155
|
.tablehead {
|
156
|
background-color: #B3D4FF;
|
157
|
color: #0040A1;
|
158
|
font-size: 14px;
|
159
|
font-weight: bold;
|
160
|
border-top: solid #ffffff 5px;
|
161
|
border-bottom: solid #ffffff 2px;
|
162
|
padding-left: 15%;
|
163
|
padding-top: 0px;
|
164
|
padding-bottom: 0px;
|
165
|
}
|
166
|
|
167
|
.roweven {
|
168
|
background: white;
|
169
|
}
|
170
|
|
171
|
.rowodd {
|
172
|
background: white;
|
173
|
}
|
174
|
|
175
|
.emphasis {
|
176
|
color: red;
|
177
|
}
|
178
|
|
179
|
|
180
|
/******************************************************************************/
|
181
|
/******************************************************************************/
|
182
|
/** USED BY EML STYLESHEETS ONLY - NO OTHERS **/
|
183
|
/******************************************************************************/
|
184
|
/******************************************************************************/
|
185
|
|
186
|
.mainContainerTable {
|
187
|
width: 750px;
|
188
|
background-color: #ffffff;
|
189
|
font-size: 12px;
|
190
|
}
|
191
|
|
192
|
.linkedHeaderStyle {
|
193
|
background: #B2D2FE;
|
194
|
border-top: solid #ffffff 5px;
|
195
|
padding-left: 15%;
|
196
|
text-align: left;
|
197
|
font-weight: bold;
|
198
|
}
|
199
|
|
200
|
.highlight {
|
201
|
background-color: #dddddd;
|
202
|
font-size: 12px;
|
203
|
border: solid #ffffff 1px;
|
204
|
padding-right: 4px;
|
205
|
text-align: right;
|
206
|
|
207
|
}
|
208
|
|
209
|
.highlightAttrib {
|
210
|
background-color: #ffffff;
|
211
|
font-size: 12px;
|
212
|
text-align: center;
|
213
|
border-bottom: solid #cccccc 2px;
|
214
|
padding-left: 4px;
|
215
|
|
216
|
}
|
217
|
|
218
|
.searchresultsdivider {
|
219
|
background-color: #dddddd;
|
220
|
}
|
221
|
|
222
|
|
223
|
.citation {
|
224
|
color: black;
|
225
|
background-color: #FFFFFF;
|
226
|
font-size: 1.2em;
|
227
|
padding-left: 10px;
|
228
|
}
|
229
|
|
230
|
.lsid {
|
231
|
text-decoration: underline;
|
232
|
}
|
233
|
|
234
|
.secondCol {
|
235
|
background-color: #ffffff;
|
236
|
font-size: 12px;
|
237
|
padding-left: 2px;
|
238
|
padding-right: 2px;
|
239
|
|
240
|
}
|
241
|
|
242
|
.bordered {
|
243
|
background-color: #ffffff;
|
244
|
font-size: 12px;
|
245
|
text-align: left;
|
246
|
padding: 5px;
|
247
|
border-bottom: solid #dddddd 1px;
|
248
|
width: 350px;
|
249
|
}
|
250
|
|
251
|
.coleven {
|
252
|
background-color: #ffffff;
|
253
|
font-size: 12px;
|
254
|
padding: 5px;
|
255
|
text-align: left;
|
256
|
border-bottom: solid #dddddd 1px;
|
257
|
}
|
258
|
|
259
|
.colodd {
|
260
|
background-color: #ffffff;
|
261
|
font-size: 12px;
|
262
|
padding: 5px;
|
263
|
text-align: left;
|
264
|
border-bottom: solid #dddddd 1px;
|
265
|
}
|
266
|
.emptycolumn {
|
267
|
width: 1px;
|
268
|
border: 1px solid #ffffff;
|
269
|
}
|
270
|
|
271
|
.innercolodd {
|
272
|
font-size: 10px;
|
273
|
padding-left: 2px;
|
274
|
padding-right: 2px;
|
275
|
text-align: left;
|
276
|
}
|
277
|
|
278
|
.innercoleven {
|
279
|
font-size: 10px;
|
280
|
padding-left: 2px;
|
281
|
padding-right: 2px;
|
282
|
text-align: left;
|
283
|
}
|
284
|
|
285
|
|
286
|
/******************************************************************************/
|
287
|
/******************************************************************************/
|
288
|
/** USED BY OTHER PAGES ONLY - NOT EML STYLESHEETS **/
|
289
|
/******************************************************************************/
|
290
|
/******************************************************************************/
|
291
|
|
292
|
|
293
|
.tablepanel {
|
294
|
background: #ffffff;
|
295
|
color: #555555;
|
296
|
font-size: 12px;
|
297
|
left-padding: 5px;
|
298
|
right-padding: 5px;
|
299
|
}
|
300
|
|
301
|
.tablehead2 {
|
302
|
background: white;
|
303
|
vertical-align: bottom;
|
304
|
color: black;
|
305
|
font-size: 1em;
|
306
|
font-weight: bold;
|
307
|
}
|
308
|
|
309
|
.plaintext {
|
310
|
color: #555555;
|
311
|
font-weight: normal;
|
312
|
font-size: 12px;
|
313
|
}
|
314
|
|
315
|
.boldtext {
|
316
|
color: #333333;
|
317
|
font-weight: bold;
|
318
|
font-size: 12px;
|
319
|
}
|
320
|
|
321
|
.rowevenemphasis {
|
322
|
background: #9ab3de;
|
323
|
font-weight: bold;
|
324
|
}
|
325
|
|
326
|
.rowoddemphasis {
|
327
|
background: #cccccc;
|
328
|
font-weight: bold;
|
329
|
}
|
330
|
|