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-17 16:17:55 -0700 (Tue, 17 Sep 2013) $'
13
  *  '$Revision: 8222 $'
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 font families */
31
@import url(http://fonts.googleapis.com/css?family=Oswald:400,300,700);
32
/* Oswald weights:
33
Light 300
34
Normal 400
35
Bold 700
36
*/
37
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,400italic);
38
/* Source Sans Pro weights:
39
Light 300
40
Normal 400
41
Normal italic 400
42
Semi-bold 600
43
Bold 700
44
*/
45

    
46
/* Import the Metacat documentation stylesheet */
47
@import url(../docs/_static/metacatui.css);
48

    
49
/*Import the Bootstrap stylesheet */
50
@import url(bootstrap.min.css);
51

    
52
/* THE BASICS
53
-------------------------------------------------- */
54
html{
55
	margin: 0;
56
	padding: 0;
57
	width: 100%;
58
	height: 100%;
59
}
60
body{
61
	background: url(../docs/_static/bg.jpg) no-repeat center center fixed;
62
	background-size: cover;
63
     -webkit-background-size: cover;
64
	 -moz-background-size: cover;
65
	 -o-background-size: cover;
66
	 font: 400 1em/1.2em Source Sans Pro, Arial, sans-serif;
67
}
68

    
69
h1{
70
	font: 400 3em/3em "Oswald", Arial, sans-serif;
71
	-webkit-margin-before: 0.2em;
72
	-webkit-margin-after: 0.2em;
73
	display: block;
74
	clear: both;
75
}
76

    
77
h2 {
78
	font: 400 2.5em/2.5em "Oswald", Arial, sans-serif;
79
	-webkit-margin-before: 0.2em;
80
	-webkit-margin-after: 0.2em;
81
	display: block;
82
	clear: both;
83
}
84

    
85
h3 {
86
	font: 400 1.5em/1.5em "Oswald", Arial, sans-serif;
87
	-webkit-margin-before: 0.2em;
88
	-webkit-margin-after: 0.2em;
89
	display: block;
90
	clear: both;
91
	margin-top: 20px;
92
}
93

    
94
input {
95
	padding-left: 4px;
96
	width: 400px;
97
	border: 1px solid #AAAAAA;
98
	font: 400 1em/1em Source Sans Pro, Arial, sans-serif;
99
	background-color:#FFFFFF;
100
	color: #333333;
101
	border-radius: 5px;
102
	-moz-border-radius: 5px;
103
	-webkit-border-radius: 5px;
104
}
105

    
106
select{
107
	border: 1px solid #AAAAAA;
108
	font: 400 1em/1em Source Sans Pro, Arial, sans-serif;
109
	height: 2em;
110
}
111

    
112
input[type="submit"] {
113
	width: 100px;
114
	margin-right: 5px;
115
	margin-top: 20px;
116
	cursor: pointer;
117
}
118

    
119
input[type="radio"] {
120
	margin-bottom: 4px;
121
	width: 15px;
122
	height: 15px;
123
	float: left;
124
}
125

    
126
input[type="checkbox"] {
127
	width: 15px;
128
	height: 15px;
129
	float: left;
130
}
131

    
132
label {
133
	font-size: 1.1em;
134
	line-height: 1.1em;
135
	display: block;
136
	margin-top: 10px;
137
}
138

    
139

    
140

    
141
/* NAVIGATION AND HEADER AND FOOTER
142
------------------------------------- */
143
.footer{
144
	width: 100%;
145
	padding: 20px 20px 0 0;
146
	bottom: 0;
147
}
148

    
149
.footer > p{
150
	font: 400 1em/1em Source Sans Pro, Arial;
151
	float: right;
152
	clear: both;
153
	display: block;
154
	text-transform: none;
155
	margin-right: 20px;
156
}
157

    
158
.footer > ul{
159
	clear: both;
160
	float: right;
161
	margin-right: 20px;
162
}
163

    
164
.footer li {
165
	list-style: none;
166
	float: left;
167
	margin-left: 20px;
168
}
169

    
170
.footer li > a,
171
.header li > a{
172
	color: #FFFFFF;
173
	font: 400 2em/2em Oswald, Arial;
174
	text-transform: uppercase;
175
}
176

    
177
.footer li > a:hover,
178
.header li > a:hover{
179
	opacity: 0.6;
180
	text-decoration: none;
181
}
182

    
183
.document{
184
	position: relative;
185
	margin-top: 20px;
186
	padding-bottom: 10px;
187
	min-height: 800px;
188
}
189

    
190
.header{
191
	height: 100px;
192
	margin: 10px;
193
}
194

    
195
/* FORMS
196
----------------------------------------*/
197
.textinput,
198
input[type="password"] {
199
	vertical-align: middle;
200
	width: 30em;
201
	height: 2.2em;
202
	font: 400 1em/2em Source Sans Pro;
203
	border-radius: 5px;
204
	-moz-border-radius: 5px;
205
	-webkit-border-radius: 5px;
206
	border: 1px solid #aaa;
207
}
208

    
209
.textinput-label {
210
	text-align: right;
211
	float: left;
212
	width: 200px;
213
	clear: left;
214
}
215

    
216
.textinput-description {
217
	margin-left: 215px;
218
	color: #666666;
219
	font-size: 0.8em;
220
	margin-top: 5px;
221
	clear: both;
222
}
223

    
224
.button, input[type="submit"], input[type="button"] {
225
	width: 100px;
226
	margin-right: 5px;
227
	margin-top: 20px;
228
	font: 400 1.2em/1.5em Oswald, Arial;
229
	cursor: pointer;
230
	height: 1.7em;
231
}
232

    
233

    
234
.checkradio-label-inline {
235
 	display: inline;
236
	vertical-align: middle;
237
}
238

    
239
.checkradio-label{
240
	margin: 0px 0px 0px 10px;
241
	float: left;
242
}
243
.checkradio-description {
244
	font: 400 .8em/.8em Source Sans Pro;
245
	color: #666666;
246
	clear: both;
247
	margin: 8px 0px 10px 38px;
248
}
249

    
250
.icon-question-sign {
251
	color: #166194;
252
	font-size: 1.2em;
253
	cursor: pointer;
254
	margin-left: 10px;
255
	margin-top: 0.5em;
256
}
257

    
258
.form-row {
259
	height: 2.7em;
260
	clear: both;
261
}
262

    
263
.form-row input,
264
.form-row select,
265
.form-row span{
266
	float: left;
267
	margin-left: 1em;
268
}
269

    
270
/* OTHER
271
----------------------------------------*/
272

    
273
.clear{
274
	clear: both;
275
}
276

    
277
.admin-login > tbody > tr > td{
278
	padding: 0px 10px 0px 0px;
279
}
280

    
281
.admin-login > tbody > tr{
282
	padding: 0px;
283
}
284

    
285
.username-input, login-input {
286
	width: auto;
287
	margin-bottom: 0px;
288
}
289

    
290
.buttons-wrapper{
291
	clear:both;
292
	margin: auto;
293
	max-width: 350px;
294
}
295
.heading-comment {
296
	margin-bottom: 0px;
297
}
298

    
299

    
300
.configured-tag {
301
	color: green;
302
	width: 115px;
303
	height: 30px;
304
}
305

    
306
.unconfigured-tag {
307
	color: red;
308
	width: 125px;
309
	height: 30px;
310
}
311

    
312
.property-title {
313
	font-weight: bolder;
314
	font-size: 12pt;
315
	width: 300px;
316
}
317

    
318
.skin-name {
319
	font-size: 14pt;
320
	width: 300px;
321
}
322

    
323
.smaller-text {
324
	font-size: 0.5em;
325
	display: inline;
326
}
327

    
328
.configure-link {
329
	font-size: 11pt;
330
}
331

    
332
.hiding-section {
333
	display: none;
334
	width: 100%;
335
	margin-left: 2em;
336
}
337

    
338
frame[name="bottom"] table
339
{
340
	border-collapse: collapse;
341
	border: 1px solid #333;
342
	font: 400 1em/1em Source Sans Pro, Arial, sans-serif;
343
}
344

    
345
frame[name="bottom"] table > tbody > td
346
{
347
	padding: 5px;
348
}
349

    
350
i{
351
	margin-right: 10px;
352
}
353

    
354

    
(2-2/19)