1 |
4082
|
daigle
|
/*
|
2 |
4080
|
daigle
|
* '$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: 2008 Regents of the University of California and the
|
8 |
|
|
* National Center for Ecological Analysis and Synthesis
|
9 |
|
|
* Authors: Michael Daigle
|
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 |
8203
|
walker
|
|
30 |
8222
|
walker
|
/* Import the Metacat documentation stylesheet */
|
31 |
|
|
@import url(../docs/_static/metacatui.css);
|
32 |
8203
|
walker
|
|
33 |
|
|
/* THE BASICS
|
34 |
|
|
-------------------------------------------------- */
|
35 |
|
|
html{
|
36 |
|
|
margin: 0;
|
37 |
|
|
padding: 0;
|
38 |
|
|
width: 100%;
|
39 |
|
|
height: 100%;
|
40 |
4080
|
daigle
|
}
|
41 |
8203
|
walker
|
body{
|
42 |
8222
|
walker
|
background: url(../docs/_static/bg.jpg) no-repeat center center fixed;
|
43 |
|
|
background-size: cover;
|
44 |
|
|
-webkit-background-size: cover;
|
45 |
|
|
-moz-background-size: cover;
|
46 |
|
|
-o-background-size: cover;
|
47 |
|
|
font: 400 1em/1.2em Source Sans Pro, Arial, sans-serif;
|
48 |
8203
|
walker
|
}
|
49 |
4080
|
daigle
|
|
50 |
8203
|
walker
|
h1{
|
51 |
|
|
font: 400 3em/3em "Oswald", Arial, sans-serif;
|
52 |
|
|
-webkit-margin-before: 0.2em;
|
53 |
|
|
-webkit-margin-after: 0.2em;
|
54 |
|
|
display: block;
|
55 |
|
|
clear: both;
|
56 |
|
|
}
|
57 |
|
|
|
58 |
4080
|
daigle
|
h2 {
|
59 |
8203
|
walker
|
font: 400 2.5em/2.5em "Oswald", Arial, sans-serif;
|
60 |
|
|
-webkit-margin-before: 0.2em;
|
61 |
|
|
-webkit-margin-after: 0.2em;
|
62 |
|
|
display: block;
|
63 |
|
|
clear: both;
|
64 |
4080
|
daigle
|
}
|
65 |
|
|
|
66 |
|
|
h3 {
|
67 |
8203
|
walker
|
font: 400 1.5em/1.5em "Oswald", Arial, sans-serif;
|
68 |
|
|
-webkit-margin-before: 0.2em;
|
69 |
|
|
-webkit-margin-after: 0.2em;
|
70 |
|
|
display: block;
|
71 |
|
|
clear: both;
|
72 |
|
|
margin-top: 20px;
|
73 |
4080
|
daigle
|
}
|
74 |
|
|
|
75 |
|
|
input {
|
76 |
|
|
padding-left: 4px;
|
77 |
|
|
width: 400px;
|
78 |
8203
|
walker
|
border: 1px solid #AAAAAA;
|
79 |
|
|
font: 400 1em/1em Source Sans Pro, Arial, sans-serif;
|
80 |
|
|
background-color:#FFFFFF;
|
81 |
|
|
color: #333333;
|
82 |
|
|
border-radius: 5px;
|
83 |
|
|
-moz-border-radius: 5px;
|
84 |
|
|
-webkit-border-radius: 5px;
|
85 |
4080
|
daigle
|
}
|
86 |
|
|
|
87 |
8203
|
walker
|
select{
|
88 |
|
|
border: 1px solid #AAAAAA;
|
89 |
|
|
font: 400 1em/1em Source Sans Pro, Arial, sans-serif;
|
90 |
|
|
height: 2em;
|
91 |
|
|
}
|
92 |
|
|
|
93 |
4080
|
daigle
|
input[type="submit"] {
|
94 |
|
|
width: 100px;
|
95 |
|
|
margin-right: 5px;
|
96 |
|
|
margin-top: 20px;
|
97 |
8203
|
walker
|
cursor: pointer;
|
98 |
4080
|
daigle
|
}
|
99 |
|
|
|
100 |
|
|
input[type="radio"] {
|
101 |
|
|
margin-bottom: 4px;
|
102 |
8203
|
walker
|
width: 15px;
|
103 |
|
|
height: 15px;
|
104 |
8222
|
walker
|
float: left;
|
105 |
8245
|
walker
|
-webkit-appearance: radio;
|
106 |
4080
|
daigle
|
}
|
107 |
|
|
|
108 |
4082
|
daigle
|
input[type="checkbox"] {
|
109 |
8203
|
walker
|
width: 15px;
|
110 |
|
|
height: 15px;
|
111 |
|
|
float: left;
|
112 |
8245
|
walker
|
-webkit-appearance: checkbox;
|
113 |
|
|
margin-top: 1em;
|
114 |
4082
|
daigle
|
}
|
115 |
|
|
|
116 |
4080
|
daigle
|
label {
|
117 |
8203
|
walker
|
font-size: 1.1em;
|
118 |
|
|
line-height: 1.1em;
|
119 |
|
|
display: block;
|
120 |
|
|
margin-top: 10px;
|
121 |
4080
|
daigle
|
}
|
122 |
|
|
|
123 |
8240
|
walker
|
table{
|
124 |
|
|
background: none;
|
125 |
|
|
}
|
126 |
4080
|
daigle
|
|
127 |
4100
|
daigle
|
|
128 |
8240
|
walker
|
|
129 |
8222
|
walker
|
/* NAVIGATION AND HEADER AND FOOTER
|
130 |
8203
|
walker
|
------------------------------------- */
|
131 |
8222
|
walker
|
.footer{
|
132 |
|
|
width: 100%;
|
133 |
|
|
padding: 20px 20px 0 0;
|
134 |
|
|
bottom: 0;
|
135 |
|
|
}
|
136 |
|
|
|
137 |
|
|
.footer > p{
|
138 |
|
|
font: 400 1em/1em Source Sans Pro, Arial;
|
139 |
8203
|
walker
|
float: right;
|
140 |
8222
|
walker
|
clear: both;
|
141 |
|
|
display: block;
|
142 |
|
|
text-transform: none;
|
143 |
|
|
margin-right: 20px;
|
144 |
5010
|
daigle
|
}
|
145 |
|
|
|
146 |
8222
|
walker
|
.footer > ul{
|
147 |
|
|
clear: both;
|
148 |
|
|
float: right;
|
149 |
|
|
margin-right: 20px;
|
150 |
|
|
}
|
151 |
|
|
|
152 |
|
|
.footer li {
|
153 |
|
|
list-style: none;
|
154 |
|
|
float: left;
|
155 |
|
|
margin-left: 20px;
|
156 |
|
|
}
|
157 |
|
|
|
158 |
|
|
.footer li > a,
|
159 |
|
|
.header li > a{
|
160 |
|
|
color: #FFFFFF;
|
161 |
|
|
font: 400 2em/2em Oswald, Arial;
|
162 |
8203
|
walker
|
text-transform: uppercase;
|
163 |
8222
|
walker
|
}
|
164 |
|
|
|
165 |
|
|
.footer li > a:hover,
|
166 |
|
|
.header li > a:hover{
|
167 |
|
|
opacity: 0.6;
|
168 |
8203
|
walker
|
text-decoration: none;
|
169 |
4080
|
daigle
|
}
|
170 |
|
|
|
171 |
8222
|
walker
|
.document{
|
172 |
|
|
position: relative;
|
173 |
|
|
margin-top: 20px;
|
174 |
|
|
padding-bottom: 10px;
|
175 |
|
|
min-height: 800px;
|
176 |
4080
|
daigle
|
}
|
177 |
|
|
|
178 |
8222
|
walker
|
.header{
|
179 |
|
|
height: 100px;
|
180 |
|
|
margin: 10px;
|
181 |
|
|
}
|
182 |
|
|
|
183 |
8203
|
walker
|
/* FORMS
|
184 |
|
|
----------------------------------------*/
|
185 |
8222
|
walker
|
.textinput,
|
186 |
8245
|
walker
|
input[type="password"],
|
187 |
|
|
input[type="text"] {
|
188 |
8203
|
walker
|
vertical-align: middle;
|
189 |
|
|
width: 30em;
|
190 |
|
|
height: 2.2em;
|
191 |
|
|
font: 400 1em/2em Source Sans Pro;
|
192 |
|
|
border-radius: 5px;
|
193 |
|
|
-moz-border-radius: 5px;
|
194 |
|
|
-webkit-border-radius: 5px;
|
195 |
|
|
border: 1px solid #aaa;
|
196 |
4080
|
daigle
|
}
|
197 |
|
|
|
198 |
8203
|
walker
|
.textinput-label {
|
199 |
|
|
text-align: right;
|
200 |
|
|
float: left;
|
201 |
|
|
width: 200px;
|
202 |
8222
|
walker
|
clear: left;
|
203 |
4080
|
daigle
|
}
|
204 |
|
|
|
205 |
8203
|
walker
|
.textinput-description {
|
206 |
|
|
margin-left: 215px;
|
207 |
8222
|
walker
|
color: #666666;
|
208 |
8203
|
walker
|
font-size: 0.8em;
|
209 |
|
|
clear: both;
|
210 |
8240
|
walker
|
min-height: 2em;
|
211 |
8245
|
walker
|
max-width: 500px;
|
212 |
|
|
position: relative;
|
213 |
|
|
top: -5px;
|
214 |
4080
|
daigle
|
}
|
215 |
|
|
|
216 |
8222
|
walker
|
.button, input[type="submit"], input[type="button"] {
|
217 |
4080
|
daigle
|
width: 100px;
|
218 |
8245
|
walker
|
margin: 20px 5px 10px 0px;
|
219 |
8203
|
walker
|
font: 400 1.2em/1.5em Oswald, Arial;
|
220 |
|
|
cursor: pointer;
|
221 |
8222
|
walker
|
height: 1.7em;
|
222 |
4080
|
daigle
|
}
|
223 |
|
|
|
224 |
8203
|
walker
|
|
225 |
|
|
.checkradio-label-inline {
|
226 |
|
|
display: inline;
|
227 |
|
|
vertical-align: middle;
|
228 |
4080
|
daigle
|
}
|
229 |
|
|
|
230 |
8222
|
walker
|
.checkradio-label{
|
231 |
8245
|
walker
|
margin: 0.7em 0px 0px 10px;
|
232 |
8222
|
walker
|
float: left;
|
233 |
|
|
}
|
234 |
8203
|
walker
|
.checkradio-description {
|
235 |
8222
|
walker
|
font: 400 .8em/.8em Source Sans Pro;
|
236 |
|
|
color: #666666;
|
237 |
|
|
clear: both;
|
238 |
|
|
margin: 8px 0px 10px 38px;
|
239 |
4080
|
daigle
|
}
|
240 |
|
|
|
241 |
8245
|
walker
|
.radiowrapper{
|
242 |
|
|
padding-top: 10px;
|
243 |
|
|
}
|
244 |
8222
|
walker
|
.icon-question-sign {
|
245 |
|
|
color: #166194;
|
246 |
|
|
font-size: 1.2em;
|
247 |
|
|
cursor: pointer;
|
248 |
8203
|
walker
|
margin-left: 10px;
|
249 |
8222
|
walker
|
margin-top: 0.5em;
|
250 |
8245
|
walker
|
display: inline-block;
|
251 |
4080
|
daigle
|
}
|
252 |
|
|
|
253 |
8245
|
walker
|
.checkbox-help{ /*For question mark icons next to checkboxes (need different vertical positioning) */
|
254 |
|
|
margin-top: 0.7em;
|
255 |
|
|
}
|
256 |
|
|
|
257 |
8203
|
walker
|
.form-row {
|
258 |
8231
|
walker
|
height: 2em;
|
259 |
8203
|
walker
|
clear: both;
|
260 |
4080
|
daigle
|
}
|
261 |
|
|
|
262 |
8203
|
walker
|
.form-row input,
|
263 |
|
|
.form-row select,
|
264 |
|
|
.form-row span{
|
265 |
|
|
float: left;
|
266 |
8222
|
walker
|
margin-left: 1em;
|
267 |
8245
|
walker
|
margin-bottom: 10px;
|
268 |
8203
|
walker
|
}
|
269 |
|
|
|
270 |
|
|
/* OTHER
|
271 |
|
|
----------------------------------------*/
|
272 |
|
|
|
273 |
|
|
.clear{
|
274 |
|
|
clear: both;
|
275 |
|
|
}
|
276 |
|
|
|
277 |
8222
|
walker
|
.admin-login > tbody > tr > td{
|
278 |
|
|
padding: 0px 10px 0px 0px;
|
279 |
8203
|
walker
|
}
|
280 |
|
|
|
281 |
8222
|
walker
|
.admin-login > tbody > tr{
|
282 |
|
|
padding: 0px;
|
283 |
8203
|
walker
|
}
|
284 |
|
|
|
285 |
8222
|
walker
|
.username-input, login-input {
|
286 |
|
|
width: auto;
|
287 |
|
|
margin-bottom: 0px;
|
288 |
|
|
}
|
289 |
|
|
|
290 |
8203
|
walker
|
.buttons-wrapper{
|
291 |
|
|
clear:both;
|
292 |
8222
|
walker
|
margin: auto;
|
293 |
|
|
max-width: 350px;
|
294 |
8203
|
walker
|
}
|
295 |
|
|
.heading-comment {
|
296 |
|
|
margin-bottom: 0px;
|
297 |
|
|
}
|
298 |
|
|
|
299 |
|
|
|
300 |
4080
|
daigle
|
.configured-tag {
|
301 |
|
|
color: green;
|
302 |
|
|
width: 115px;
|
303 |
|
|
height: 30px;
|
304 |
|
|
}
|
305 |
|
|
|
306 |
|
|
.unconfigured-tag {
|
307 |
|
|
color: red;
|
308 |
|
|
width: 125px;
|
309 |
|
|
}
|
310 |
|
|
|
311 |
|
|
|
312 |
|
|
.skin-name {
|
313 |
4082
|
daigle
|
font-size: 14pt;
|
314 |
|
|
width: 300px;
|
315 |
4080
|
daigle
|
}
|
316 |
|
|
|
317 |
|
|
.smaller-text {
|
318 |
8203
|
walker
|
font-size: 0.5em;
|
319 |
4082
|
daigle
|
display: inline;
|
320 |
4080
|
daigle
|
}
|
321 |
|
|
|
322 |
8231
|
walker
|
.configuration-table{
|
323 |
|
|
border-collapse: separate;
|
324 |
|
|
border-spacing: 6px;
|
325 |
8240
|
walker
|
background: none;
|
326 |
8231
|
walker
|
}
|
327 |
|
|
|
328 |
4080
|
daigle
|
.configure-link {
|
329 |
8231
|
walker
|
background: rgba(255, 255, 255, 0.7);
|
330 |
|
|
border-radius: 10px;
|
331 |
|
|
-moz-border-radius: 10px;
|
332 |
|
|
-webkit-border-radius: 10px;
|
333 |
|
|
color: #333333;
|
334 |
4258
|
daigle
|
}
|
335 |
|
|
|
336 |
8231
|
walker
|
.configure-link.inactive{
|
337 |
|
|
background: none;
|
338 |
|
|
}
|
339 |
|
|
|
340 |
|
|
.configure-link.inactive:hover{
|
341 |
|
|
background: none;
|
342 |
|
|
cursor: default;
|
343 |
|
|
color: #333333;
|
344 |
|
|
}
|
345 |
|
|
|
346 |
|
|
.configure-link > i,
|
347 |
|
|
.configure-link > a{
|
348 |
|
|
color: inherit;
|
349 |
|
|
vertical-align: middle;
|
350 |
|
|
}
|
351 |
|
|
|
352 |
|
|
.configure-link:hover,
|
353 |
|
|
.configure-link:hover > a,
|
354 |
|
|
.configure-link:hover > i{
|
355 |
|
|
background: rgba(255, 255, 255, 1);
|
356 |
|
|
color: #166194;
|
357 |
|
|
text-decoration: none;
|
358 |
|
|
cursor: pointer;
|
359 |
|
|
}
|
360 |
|
|
|
361 |
4258
|
daigle
|
.hiding-section {
|
362 |
|
|
display: none;
|
363 |
|
|
width: 100%;
|
364 |
|
|
margin-left: 2em;
|
365 |
|
|
}
|
366 |
|
|
|
367 |
8222
|
walker
|
frame[name="bottom"] table
|
368 |
|
|
{
|
369 |
|
|
border-collapse: collapse;
|
370 |
|
|
border: 1px solid #333;
|
371 |
|
|
font: 400 1em/1em Source Sans Pro, Arial, sans-serif;
|
372 |
|
|
}
|
373 |
4258
|
daigle
|
|
374 |
8222
|
walker
|
frame[name="bottom"] table > tbody > td
|
375 |
|
|
{
|
376 |
|
|
padding: 5px;
|
377 |
|
|
}
|
378 |
|
|
|
379 |
|
|
i{
|
380 |
|
|
margin-right: 10px;
|
381 |
|
|
}
|
382 |
|
|
|