1 |
2211
|
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 |
|
|
|
38 |
|
|
|
39 |
|
|
/*
|
40 |
|
|
* import eml css:
|
41 |
|
|
*/
|
42 |
|
|
|
43 |
|
|
@import url(@knb-site-url@/portalpages.css);
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
/**
|
47 |
|
|
* set the correct iframe sizes to accomodate the
|
48 |
|
|
* header, footer, left and right areas.
|
49 |
|
|
* NOTE: these styles apply only to each
|
50 |
|
|
* container frame, *NOT* to the document within it!
|
51 |
|
|
*/
|
52 |
|
|
.iframeheaderclass {
|
53 |
|
|
height: 80px;
|
54 |
|
|
width: 100%;
|
55 |
|
|
border: 0px;
|
56 |
|
|
margin: 0px;
|
57 |
|
|
}
|
58 |
|
|
|
59 |
|
|
.iframesearchboxclass {
|
60 |
|
|
height: 431px;
|
61 |
|
|
width: 100%;
|
62 |
|
|
border: 0px;
|
63 |
|
|
margin: 0px;
|
64 |
|
|
}
|
65 |
|
|
|
66 |
|
|
.iframeleftcolclass { /* not used */ }
|
67 |
|
|
.iframerightcolclass { /* not used */ }
|
68 |
|
|
.iframefooterclass { /* not used */ }
|
69 |
|
|
|
70 |
|
|
/**
|
71 |
|
|
* set the size and alignment etc of the top-level layout table
|
72 |
|
|
*/
|
73 |
|
|
.templatetableclass {
|
74 |
|
|
width: 100%;
|
75 |
|
|
border: 0px;
|
76 |
|
|
padding: 0px;
|
77 |
|
|
margin: 0px;
|
78 |
|
|
}
|
79 |
|
|
|
80 |
|
|
|
81 |
|
|
/**
|
82 |
|
|
* set the style of the main content area and its contents
|
83 |
|
|
*/
|
84 |
|
|
.templatecontentareaclass {
|
85 |
|
|
border: 0px;
|
86 |
|
|
padding: 0px;
|
87 |
|
|
margin: 0px;
|
88 |
|
|
}
|
89 |
|
|
|
90 |
|
|
|
91 |
|
|
/**
|
92 |
|
|
* set the correct <td> sizes to accomodate the
|
93 |
|
|
* header, footer, left and right iframes.
|
94 |
|
|
* NOTE: these styles apply only to each
|
95 |
|
|
* container frame, *NOT* to the document in
|
96 |
|
|
* the iframe within it!
|
97 |
|
|
*/
|
98 |
|
|
.templateheaderrowclass {
|
99 |
|
|
height: 80px;
|
100 |
|
|
/*
|
101 |
|
|
no width allowed - uses same width as table class
|
102 |
|
|
*/
|
103 |
|
|
border: 0px;
|
104 |
|
|
padding: 0px;
|
105 |
|
|
margin: 0px;
|
106 |
|
|
}
|
107 |
|
|
|
108 |
|
|
|
109 |
|
|
.templateleftcolclass {
|
110 |
|
|
height: 100%;
|
111 |
|
|
width: 0px;
|
112 |
|
|
border: 0px;
|
113 |
|
|
padding: 0px;
|
114 |
|
|
margin: 0px;
|
115 |
|
|
}
|
116 |
|
|
|
117 |
|
|
|
118 |
|
|
.templaterightcolclass {
|
119 |
|
|
height: 100%;
|
120 |
|
|
width: 0px;
|
121 |
|
|
border: 0px;
|
122 |
|
|
padding: 0px;
|
123 |
|
|
margin: 0px;
|
124 |
|
|
}
|
125 |
|
|
|
126 |
|
|
|
127 |
|
|
.templatefooterrowclass {
|
128 |
|
|
height: 0px;
|
129 |
|
|
/*
|
130 |
|
|
no width allowed - uses same width as table class
|
131 |
|
|
*/
|
132 |
|
|
border: 0px;
|
133 |
|
|
padding: 0px;
|
134 |
|
|
margin: 0px;
|
135 |
|
|
}
|
136 |
|
|
|
137 |
|
|
|
138 |
|
|
/**
|
139 |
|
|
* these override styles imported from eml css
|
140 |
|
|
*/
|
141 |
|
|
|
142 |
|
|
.tablehead {
|
143 |
|
|
background-image: url(@knb-site-url@/images/panelhead_bg.gif);
|
144 |
|
|
color: #0040A1;
|
145 |
|
|
text-align: left;
|
146 |
|
|
font-size: 14px;
|
147 |
|
|
font-weight: bold;
|
148 |
|
|
border-top: solid #ffffff 5px;
|
149 |
|
|
border-bottom: solid #ffffff 2px;
|
150 |
|
|
padding-left: 15%;
|
151 |
|
|
padding-top: 0px;
|
152 |
|
|
padding-bottom: 0px;
|
153 |
|
|
}
|
154 |
|
|
|
155 |
|
|
th.tablehead {
|
156 |
|
|
|
157 |
|
|
text-align: center;
|
158 |
|
|
border: 0px;
|
159 |
|
|
margin: 0px;
|
160 |
|
|
padding: 0px;
|
161 |
|
|
height: 21px;
|
162 |
|
|
}
|
163 |
|
|
|
164 |
|
|
.tablehead_lcorner {
|
165 |
|
|
background-image: url(@knb-site-url@/images/panelhead_bg_lcorner.gif);
|
166 |
|
|
background-position: right top;
|
167 |
|
|
background-repeat: no-repeat;
|
168 |
|
|
padding: 0px;
|
169 |
|
|
margin: 0px;
|
170 |
|
|
width: 10px;
|
171 |
|
|
height: 21px;
|
172 |
|
|
}
|
173 |
|
|
|
174 |
|
|
.tablehead_rcorner {
|
175 |
|
|
background-image: url(@knb-site-url@/images/panelhead_bg_rcorner.gif);
|
176 |
|
|
background-position: left top;
|
177 |
|
|
background-repeat: no-repeat;
|
178 |
|
|
padding: 0px;
|
179 |
|
|
margin: 0px;
|
180 |
|
|
width: 10px;
|
181 |
|
|
height: 21px;
|
182 |
|
|
}
|
183 |
|
|
|
184 |
|
|
/**
|
185 |
|
|
* these are used only in the metacat pages
|
186 |
|
|
*/
|
187 |
|
|
|
188 |
|
|
p.emphasis {
|
189 |
|
|
|
190 |
|
|
font-size: 18px;
|
191 |
|
|
color: #dd7744;
|
192 |
|
|
font-weight: bold;
|
193 |
|
|
font-style: normal;
|
194 |
|
|
}
|
195 |
|
|
|
196 |
|
|
.searchresultsdivider {
|
197 |
|
|
background-color: #dddddd;
|
198 |
|
|
}
|
199 |
|
|
|
200 |
|
|
/**
|
201 |
|
|
* these are used only in the registry skins
|
202 |
|
|
*/
|
203 |
|
|
p.searchbox {
|
204 |
|
|
color: #0040A1;
|
205 |
|
|
font-weight: bold;
|
206 |
|
|
font-size: 12px;
|
207 |
|
|
text-decoration: none;
|
208 |
|
|
}
|
209 |
|
|
|
210 |
|
|
br {
|
211 |
|
|
margin: 0px;
|
212 |
|
|
padding: 0px;
|
213 |
|
|
}
|
214 |
|
|
|
215 |
2350
|
sgarg
|
|
216 |
2211
|
jones
|
textarea {
|
217 |
|
|
width: 80%;
|
218 |
|
|
}
|
219 |
|
|
|
220 |
|
|
.required {
|
221 |
|
|
font-weight: bold;
|
222 |
|
|
color: #b00000;
|
223 |
2350
|
sgarg
|
font-size: 12px;
|
224 |
2211
|
jones
|
}
|
225 |
|
|
|
226 |
|
|
.label {
|
227 |
|
|
font-weight: bold;
|
228 |
2350
|
sgarg
|
font-size: 12px;
|
229 |
2211
|
jones
|
}
|
230 |
2350
|
sgarg
|
|
231 |
|
|
|
232 |
|
|
.emphasis {
|
233 |
|
|
font-weight: bold;
|
234 |
|
|
font-size: 12px;
|
235 |
|
|
}
|
236 |
|
|
|
237 |
|
|
.boldlink {
|
238 |
|
|
font-weight: bold;
|
239 |
|
|
font-size: 12px;
|
240 |
|
|
}
|
241 |
|
|
|
242 |
|
|
|
243 |
|
|
.redbold {
|
244 |
|
|
font-weight: bold;
|
245 |
|
|
color: #b00000;
|
246 |
|
|
font-size: 12px;
|
247 |
|
|
}
|
248 |
|
|
|
249 |
|
|
.greenbold {
|
250 |
|
|
font-weight: bold;
|
251 |
|
|
color: #008000;
|
252 |
|
|
font-size: 12px;
|
253 |
|
|
}
|
254 |
|
|
|
255 |
|
|
.smalltext {
|
256 |
|
|
font-weight: bold;
|
257 |
|
|
font-size: 10px;
|
258 |
|
|
}
|
259 |
|
|
|
260 |
|
|
.italicized {
|
261 |
|
|
font-style: italic;
|
262 |
|
|
font-size: 12px;
|
263 |
|
|
}
|
264 |
|
|
|
265 |
|
|
.regtext {
|
266 |
|
|
font-size: 12px;
|
267 |
|
|
}
|
268 |
|
|
|
269 |
|
|
.tables {
|
270 |
|
|
width: 760;
|
271 |
|
|
border: 0;
|
272 |
|
|
margin: 0;
|
273 |
|
|
padding: 9;
|
274 |
|
|
border-spacing: 5;
|
275 |
|
|
background-color: #c6d6e7;
|
276 |
|
|
}
|