Project

General

Profile

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
body {
30
	font-family: Arial, sans-serif;
31
	font-size: 11pt;
32
	margin-left: 30px;
33
	margin-right: 30px;
34
	width: 700px;
35
}
36
37
h2 {
38
	margin-top: 30px;
39
	margin-bottom: 10px;
40
}
41
42
h3 {
43
	margin-top: 8px;
44
	margin-bottom: 8px;
45
}
46
47
input {
48
	padding-left: 4px;
49
	width: 400px;
50
}
51
52
input[type="submit"] {
53
	width: 100px;
54
	margin-right: 5px;
55
	margin-top: 20px;
56
}
57
58
input[type="radio"] {
59
	margin-bottom: 4px;
60
}
61
62 4082 daigle
input[type="checkbox"] {
63
	width: 13px;
64
}
65
66 4080 daigle
label {
67
	font-size: 12pt;
68
}
69
70
table {
71
	margin-left: auto;
72
	margin-right: auto;
73
}
74
75
.config-section {
76
	display: table;
77
	width: 100%
78
}
79
80
.config-section-hiding {
81
	display: none;
82
	width: 100%
83
}
84
85
.config-checkbox {
86
	width: 25px;
87
	vertical-align: middle;
88
}
89
90
.config-checkbox-label {
91
	text-align: left;
92
	vertical-align: middle;
93
	width: 600px;
94
}
95
96
.config-property-label {
97
	text-align: right;
98
	vertical-align: middle;
99
	width: 200px;
100
	padding-right: 8px;
101
}
102
103
.config-property-input {
104
	text-align: left;
105
	vertical-align: middle;
106
	width: 400px;
107
}
108
109
.config-question-mark {
110
	text-align: left;
111
	vertical-align: middle;
112
}
113
114
.section {
115
	font-size: 16pt;
116
	font-weight: bold;
117
	border-bottom: solid #dddddd 1px;
118
}
119
120
.login-input {
121
	width: 150px;
122
}
123
124
br {
125
	clear: left;
126
}
127
128
br.ldap-header {
129
	margin-bottom: 80px;
130
}
131
132
br.main-header {
133
	margin-bottom: 70px;
134
}
135
136
br.skins-header {
137
	margin-bottom: 50px;
138
}
139
140
.button {
141
	width: 100px;
142
	margin-right: 5px;
143
	margin-top: 20px;
144
}
145
146
.left-button {
147
	width: 100px;
148
	margin-left: 275px;
149
	margin-right: 5px;
150
	margin-top: 20px;
151
}
152
153
.warning {
154
	color: red;
155
}
156
157
.heading-comment {
158
	margin-bottom: 0px;
159
}
160
161
.small-message {
162
	margin-top: 10px;
163
	font-size: 11px;
164
}
165
166
.message-text {
167
	font-size: 9pt;
168
	font-weight: bold;
169
	color: blue;
170
	margin-bottom: 5px;
171
}
172
173
.success-text {
174
	font-size: 9pt;
175
	font-weight: bold;
176
	color: green;
177 4082 daigle
	margin-bottom: 5px;
178 4080 daigle
}
179
180
.error-text {
181
	font-size: 9pt;
182
	color: red;
183
	margin-bottom: 5px;
184
}
185
186
.error-header {
187
	font-size: 9pt;
188
	font-weight: bold;
189
	color: red;
190
}
191
192
.formfield-error-text {
193
	font-size: 9pt;
194
	color: red;
195
	margin-bottom: 5px;
196
}
197
198
.formfield-error-header {
199
	font-size: 9pt;
200
	font-weight: bold;
201
	color: red;
202
}
203
204
.configured-tag {
205
	color: green;
206
	width: 115px;
207
	height: 30px;
208
}
209
210
.unconfigured-tag {
211
	color: red;
212
	width: 125px;
213
	height: 30px;
214
}
215
216
.property-title {
217
	font-weight: bolder;
218
	font-size: 12pt;
219
	width: 300px;
220
}
221
222
.skin-name {
223 4082 daigle
	font-size: 14pt;
224
	width: 300px;
225 4080 daigle
}
226
227
.smaller-text {
228 4082 daigle
	font-size: smaller;
229
	display: inline;
230 4080 daigle
}
231
232
.configure-link {
233
	font-size: 11pt;
234
}