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: 2008 Regents of the University of California and the
8
  *               National Center for Ecological Analysis and Synthesis
9
  *     Authors: Michael Daigle
10
  *
11
  *    '$Author: walker $'
12
  *      '$Date: 2013-09-18 15:37:06 -0700 (Wed, 18 Sep 2013) $'
13
  *  '$Revision: 8240 $'
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
/* Import the Metacat documentation stylesheet */
31
@import url(../docs/_static/metacatui.css);
32

    
33
/* THE BASICS
34
-------------------------------------------------- */
35
html{
36
	margin: 0;
37
	padding: 0;
38
	width: 100%;
39
	height: 100%;
40
}
41
body{
42
	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
}
49

    
50
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
h2 {
59
	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
}
65

    
66
h3 {
67
	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
}
74

    
75
input {
76
	padding-left: 4px;
77
	width: 400px;
78
	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
}
86

    
87
select{
88
	border: 1px solid #AAAAAA;
89
	font: 400 1em/1em Source Sans Pro, Arial, sans-serif;
90
	height: 2em;
91
}
92

    
93
input[type="submit"] {
94
	width: 100px;
95
	margin-right: 5px;
96
	margin-top: 20px;
97
	cursor: pointer;
98
}
99

    
100
input[type="radio"] {
101
	margin-bottom: 4px;
102
	width: 15px;
103
	height: 15px;
104
	float: left;
105
}
106

    
107
input[type="checkbox"] {
108
	width: 15px;
109
	height: 15px;
110
	float: left;
111
}
112

    
113
label {
114
	font-size: 1.1em;
115
	line-height: 1.1em;
116
	display: block;
117
	margin-top: 10px;
118
}
119

    
120
table{
121
	background: none;
122
}
123

    
124

    
125

    
126
/* NAVIGATION AND HEADER AND FOOTER
127
------------------------------------- */
128
.footer{
129
	width: 100%;
130
	padding: 20px 20px 0 0;
131
	bottom: 0;
132
}
133

    
134
.footer > p{
135
	font: 400 1em/1em Source Sans Pro, Arial;
136
	float: right;
137
	clear: both;
138
	display: block;
139
	text-transform: none;
140
	margin-right: 20px;
141
}
142

    
143
.footer > ul{
144
	clear: both;
145
	float: right;
146
	margin-right: 20px;
147
}
148

    
149
.footer li {
150
	list-style: none;
151
	float: left;
152
	margin-left: 20px;
153
}
154

    
155
.footer li > a,
156
.header li > a{
157
	color: #FFFFFF;
158
	font: 400 2em/2em Oswald, Arial;
159
	text-transform: uppercase;
160
}
161

    
162
.footer li > a:hover,
163
.header li > a:hover{
164
	opacity: 0.6;
165
	text-decoration: none;
166
}
167

    
168
.document{
169
	position: relative;
170
	margin-top: 20px;
171
	padding-bottom: 10px;
172
	min-height: 800px;
173
}
174

    
175
.header{
176
	height: 100px;
177
	margin: 10px;
178
}
179

    
180
/* FORMS
181
----------------------------------------*/
182
.textinput,
183
input[type="password"] {
184
	vertical-align: middle;
185
	width: 30em;
186
	height: 2.2em;
187
	font: 400 1em/2em Source Sans Pro;
188
	border-radius: 5px;
189
	-moz-border-radius: 5px;
190
	-webkit-border-radius: 5px;
191
	border: 1px solid #aaa;
192
}
193

    
194
.textinput-label {
195
	text-align: right;
196
	float: left;
197
	width: 200px;
198
	clear: left;
199
}
200

    
201
.textinput-description {
202
	margin-left: 215px;
203
	color: #666666;
204
	font-size: 0.8em;
205
	margin-top: 5px;
206
	clear: both;
207
	min-height: 2em;
208
}
209

    
210
.button, input[type="submit"], input[type="button"] {
211
	width: 100px;
212
	margin-right: 5px;
213
	margin-top: 20px;
214
	font: 400 1.2em/1.5em Oswald, Arial;
215
	cursor: pointer;
216
	height: 1.7em;
217
}
218

    
219

    
220
.checkradio-label-inline {
221
 	display: inline;
222
	vertical-align: middle;
223
}
224

    
225
.checkradio-label{
226
	margin: 0px 0px 0px 10px;
227
	float: left;
228
}
229
.checkradio-description {
230
	font: 400 .8em/.8em Source Sans Pro;
231
	color: #666666;
232
	clear: both;
233
	margin: 8px 0px 10px 38px;
234
}
235

    
236
.icon-question-sign {
237
	color: #166194;
238
	font-size: 1.2em;
239
	cursor: pointer;
240
	margin-left: 10px;
241
	margin-top: 0.5em;
242
}
243

    
244
.form-row {
245
	height: 2em;
246
	clear: both;
247
}
248

    
249
.form-row input,
250
.form-row select,
251
.form-row span{
252
	float: left;
253
	margin-left: 1em;
254
}
255

    
256
/* OTHER
257
----------------------------------------*/
258

    
259
.clear{
260
	clear: both;
261
}
262

    
263
.admin-login > tbody > tr > td{
264
	padding: 0px 10px 0px 0px;
265
}
266

    
267
.admin-login > tbody > tr{
268
	padding: 0px;
269
}
270

    
271
.username-input, login-input {
272
	width: auto;
273
	margin-bottom: 0px;
274
}
275

    
276
.buttons-wrapper{
277
	clear:both;
278
	margin: auto;
279
	max-width: 350px;
280
}
281
.heading-comment {
282
	margin-bottom: 0px;
283
}
284

    
285

    
286
.configured-tag {
287
	color: green;
288
	width: 115px;
289
	height: 30px;
290
}
291

    
292
.unconfigured-tag {
293
	color: red;
294
	width: 125px;
295
}
296

    
297

    
298
.skin-name {
299
	font-size: 14pt;
300
	width: 300px;
301
}
302

    
303
.smaller-text {
304
	font-size: 0.5em;
305
	display: inline;
306
}
307

    
308
.configuration-table{
309
	border-collapse: separate;
310
	border-spacing: 6px;
311
	background: none;
312
}
313

    
314
.configure-link {
315
	background: rgba(255, 255, 255, 0.7);
316
	border-radius: 10px;
317
	-moz-border-radius: 10px;
318
	-webkit-border-radius: 10px;
319
	color: #333333;
320
}
321

    
322
.configure-link.inactive{
323
	background: none;
324
}
325

    
326
.configure-link.inactive:hover{
327
	background: none;
328
	cursor: default;
329
	color: #333333;
330
}
331

    
332
.configure-link > i,
333
.configure-link > a{
334
	color: inherit;
335
	vertical-align: middle;
336
}
337

    
338
.configure-link:hover,
339
.configure-link:hover > a,
340
.configure-link:hover > i{
341
	background: rgba(255, 255, 255, 1);
342
	color: #166194;
343
	text-decoration: none;
344
	cursor: pointer;
345
}
346

    
347
.hiding-section {
348
	display: none;
349
	width: 100%;
350
	margin-left: 2em;
351
}
352

    
353
frame[name="bottom"] table
354
{
355
	border-collapse: collapse;
356
	border: 1px solid #333;
357
	font: 400 1em/1em Source Sans Pro, Arial, sans-serif;
358
}
359

    
360
frame[name="bottom"] table > tbody > td
361
{
362
	padding: 5px;
363
}
364

    
365
i{
366
	margin-right: 10px;
367
}
368

    
369

    
(2-2/19)