Project

General

Profile

1
 /*
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: sgarg $'
12
  *      '$Date: 2004-12-22 11:36:50 -0800 (Wed, 22 Dec 2004) $'
13
  *  '$Revision: 2350 $'
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

    
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
  width:    100%;
47
  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
.title {
130
    font-family: Georgia, Times New Roman, Times, serif;
131
    color:      black;
132
    background: white;
133
    font-size: 24px; 
134
    font-weight: bold;
135
}
136

    
137
.highlight  {
138
    color: #006699;
139
    background-color: #FFFFFF; 
140
    font-style: italic;
141
    font-size: 1em; 
142
    padding-left: 10px;
143
}
144

    
145
.tablehead {
146
    color: #0040A1;
147
    background: #FFFFFF;
148
    text-align: left;
149
    font-size: 14px; 
150
    font-weight: bold;
151
    border-top: solid #ffffff 15px;
152
    border-bottom: solid #dddddd 1px;
153
    padding-left: 10px;
154
    padding-top: 0px;
155
    padding-bottom: 0px;
156
}
157

    
158
th.tablehead {
159

    
160
    text-align: center;
161
    border-bottom: solid #006666 1px;
162
    margin: 0px;
163
    padding: 0px;
164
    height:  21px;
165
}
166

    
167
.tablehead_lcorner {
168
    background-position: right top;
169
    background-repeat: no-repeat;
170
    padding: 0px;
171
    margin:  0px;
172
    width:   10px;
173
    height:  21px;
174
}    
175
    
176
.tablehead_rcorner {
177
    background-position: left top;
178
    background-repeat: no-repeat;
179
    padding: 0px;
180
    margin:  0px;
181
    width:   10px;
182
    height:  21px;
183
}    
184

    
185
a {
186
    color: #0040A1;
187
    font-weight: bold;
188
    font-size: 12px; 
189
    text-decoration: none; }
190
    
191
a:hover {
192
    color: #ff9933;
193
    text-decoration: underline; }
194

    
195
/**
196
 *  these are used only in the metacat pages
197
 */
198

    
199
p.emphasis {
200

    
201
  font-size: 18px;
202
  color: #dd7744; 
203
  font-weight: bold;
204
  font-style:  normal;
205
}
206

    
207
.searchresultsdivider {
208
    background-color: #dddddd;   
209
}
210

    
211
/**
212
 *  these are used only in the registry skins
213
 */
214
p.searchbox {
215
    color: #0040A1;
216
    font-weight: bold;
217
    font-size: 12px; 
218
    text-decoration: none; 
219
}
220

    
221
br {
222
    margin: 0px;
223
    padding: 0px;
224
}
225

    
226
textarea {
227
   width: 80%;
228
}
229

    
230
.required {
231
    font-weight: bold;
232
    color: #b00000;
233
    font-size: 12px;
234
}
235

    
236
.label {
237
    font-weight: bold;
238
    font-size: 12px;
239
}
240

    
241

    
242
.emphasis {
243
    font-weight: bold;
244
    font-size: 12px;
245
}
246

    
247
.boldlink {
248
	font-weight: bold;
249
	font-size: 12px;
250
}
251

    
252

    
253
.redbold {
254
	font-weight: bold;
255
	color: #b00000;
256
	font-size: 12px;
257
}
258

    
259
.greenbold {
260
	font-weight: bold;
261
	color: #008000;
262
	font-size: 12px;
263
}
264

    
265
.smalltext {
266
	font-weight: bold;
267
	font-size: 10px;
268
}
269

    
270
.italicized {
271
	font-style: italic;
272
	font-size: 12px;
273
}
274

    
275
.regtext {
276
	font-size: 12px;
277
}
278
	
279
.tables {
280
  width:   760;
281
  border:    0;
282
  margin:    0;
283
  padding:   9;
284
  border-spacing: 5;
285
  background-color: #c6d6e7;
286
}
287

    
(6-6/9)