1 | /* |
---|
2 | Document : style |
---|
3 | Created on : 12-jul-2011, 15:12:02 |
---|
4 | Author : fpvanagthoven |
---|
5 | Description: |
---|
6 | Purpose of the stylesheet follows. |
---|
7 | */ |
---|
8 | |
---|
9 | /* |
---|
10 | TODO customize this sample style |
---|
11 | Syntax recommendation http://www.w3.org/TR/REC-CSS2/ |
---|
12 | */ |
---|
13 | |
---|
14 | h1 { |
---|
15 | width: 100%; |
---|
16 | text-align: center; |
---|
17 | color: white; |
---|
18 | text-shadow: #888 0px 0px 1em; |
---|
19 | margin: 0 0 0.1em 0; |
---|
20 | } |
---|
21 | |
---|
22 | h2 { |
---|
23 | margin: 0; |
---|
24 | font-size: larger; |
---|
25 | } |
---|
26 | |
---|
27 | h3 { |
---|
28 | margin: 0; |
---|
29 | font-size: small; |
---|
30 | font-weight: normal; |
---|
31 | color: #333; |
---|
32 | } |
---|
33 | |
---|
34 | legend { |
---|
35 | padding-left: 0em; |
---|
36 | color: #fff; |
---|
37 | text-shadow: #000 0px 0px .4em; |
---|
38 | } |
---|
39 | |
---|
40 | fieldset { |
---|
41 | background-color: #aeb2b3; |
---|
42 | border: 1px solid #fff; |
---|
43 | -moz-border-radius: 15px; |
---|
44 | border-radius: 15px; |
---|
45 | margin-bottom: 2em; |
---|
46 | padding: 0 1em 1em 1em; |
---|
47 | -moz-box-shadow: 2px 2px 1px #888; |
---|
48 | -webkit-box-shadow: 2px 2px 1px #888; |
---|
49 | box-shadow: 2px 2px 1px #888; |
---|
50 | } |
---|
51 | html { |
---|
52 | background-image: url('../images/bg/blueishgridblock.png'); |
---|
53 | height: 100%; |
---|
54 | } |
---|
55 | |
---|
56 | root { |
---|
57 | display: block; |
---|
58 | } |
---|
59 | |
---|
60 | body { |
---|
61 | font-family: sans-serif; |
---|
62 | background-image: url('../images/bg/blueishgrid.png'); |
---|
63 | background-repeat: repeat-x; |
---|
64 | margin: 0; |
---|
65 | padding: 0; |
---|
66 | height: 100%; |
---|
67 | } |
---|
68 | |
---|
69 | input { |
---|
70 | background-color: #c6c6c6; |
---|
71 | border: 1px solid #888; |
---|
72 | } |
---|
73 | |
---|
74 | textarea { |
---|
75 | background-color: #c6c6c6; |
---|
76 | border: 1px solid #888; |
---|
77 | } |
---|
78 | |
---|
79 | select { |
---|
80 | background-color: #c6c6c6; |
---|
81 | border: 1px solid #888; |
---|
82 | } |
---|
83 | |
---|
84 | #wrapper { |
---|
85 | width: 80%; |
---|
86 | min-width: 570px; |
---|
87 | margin: auto; |
---|
88 | } |
---|
89 | |
---|
90 | #header { |
---|
91 | height: 4em; |
---|
92 | background-color: transparent; |
---|
93 | } |
---|
94 | |
---|
95 | #logo{ |
---|
96 | background-image: url('../images/headlogo.png'); |
---|
97 | background-position: top center; |
---|
98 | background-repeat: no-repeat; |
---|
99 | font-size: 2em; |
---|
100 | font-weight: bold; |
---|
101 | text-align: center; |
---|
102 | line-height: 2em; |
---|
103 | text-shadow: #555 0px 0px .2em; |
---|
104 | height: 189px; |
---|
105 | } |
---|
106 | |
---|
107 | #logo a { |
---|
108 | text-decoration: none; |
---|
109 | color: #ddd; |
---|
110 | } |
---|
111 | |
---|
112 | #logo a:hover { |
---|
113 | color: #fff; |
---|
114 | } |
---|
115 | |
---|
116 | #content { |
---|
117 | position: relative; |
---|
118 | width: 100%; |
---|
119 | padding: 2em 0; |
---|
120 | } |
---|
121 | |
---|
122 | |
---|
123 | |
---|
124 | /* ################################################################## |
---|
125 | ===================== STYLESHEET OF GLORY ======================== */ |
---|
126 | |
---|
127 | .creation { |
---|
128 | min-height: 10em; |
---|
129 | background-image: url('../images/bg/graygradient.png'); |
---|
130 | background-repeat: repeat-x; |
---|
131 | background-color: #aeb2b3; |
---|
132 | -moz-border-radius: 15px; |
---|
133 | border-radius: 15px; |
---|
134 | -moz-box-shadow: 2px 2px 2px #888; |
---|
135 | -webkit-box-shadow: 2px 2px 2px #888; |
---|
136 | box-shadow: 2px 2px 2px #888; |
---|
137 | padding: 2em; |
---|
138 | border: 1px solid white; |
---|
139 | } |
---|
140 | |
---|
141 | #surveyHead { |
---|
142 | position: relative; |
---|
143 | width: 100%; |
---|
144 | } |
---|
145 | |
---|
146 | #surveyTitle { |
---|
147 | width: 17em; |
---|
148 | font-size: large; |
---|
149 | color: #555; |
---|
150 | } |
---|
151 | |
---|
152 | #surveyTitle:hover { |
---|
153 | color: black; |
---|
154 | } |
---|
155 | |
---|
156 | #surveyDescription { |
---|
157 | display: block; |
---|
158 | width: 30em; |
---|
159 | max-width: 30em; |
---|
160 | font-family: sans-serif; |
---|
161 | color: #555; |
---|
162 | } |
---|
163 | |
---|
164 | #timeStamp { |
---|
165 | position: absolute; |
---|
166 | color: #333; |
---|
167 | font-size: small; |
---|
168 | right: 6em; |
---|
169 | top: 0; |
---|
170 | line-height: 2.3em; |
---|
171 | } |
---|
172 | |
---|
173 | #surveySaveButton { |
---|
174 | position: absolute; |
---|
175 | top: 0; |
---|
176 | right: 0; |
---|
177 | width: 5em; |
---|
178 | } |
---|
179 | |
---|
180 | #surveyDescription:hover { |
---|
181 | color: black; |
---|
182 | } |
---|
183 | |
---|
184 | #surveyLink { |
---|
185 | position: absolute; |
---|
186 | top: -2em; |
---|
187 | right: 0; |
---|
188 | font-size: x-small; |
---|
189 | color: #333; |
---|
190 | width: 30em; |
---|
191 | border-color: transparent; |
---|
192 | background-color: transparent; |
---|
193 | } |
---|
194 | |
---|
195 | #questionsDiv { |
---|
196 | margin-top: 2em; |
---|
197 | } |
---|
198 | |
---|
199 | .answersDiv { |
---|
200 | margin-left: 0.5em; |
---|
201 | } |
---|
202 | |
---|
203 | #submitSurvey { |
---|
204 | display: block; |
---|
205 | height: 3em; |
---|
206 | width: 10em; |
---|
207 | margin-top: 2em; |
---|
208 | background-color: #aeb2b3; |
---|
209 | border: 1px solid white; |
---|
210 | } |
---|
211 | |
---|
212 | #submitSurvey:hover { |
---|
213 | background-color: #e3eff3; |
---|
214 | color: #111; |
---|
215 | border-color: deepskyblue; |
---|
216 | } |
---|
217 | |
---|
218 | #submitSurvey:active { |
---|
219 | background-color: #fff; |
---|
220 | border-style: inset; |
---|
221 | border-color: orange; |
---|
222 | } |
---|
223 | |
---|
224 | #addQuestionButton { |
---|
225 | margin-top: 1em; |
---|
226 | width: 20em; |
---|
227 | } |
---|
228 | |
---|
229 | #addOpt { |
---|
230 | margin-left: 1em; |
---|
231 | } |
---|
232 | |
---|
233 | |
---|
234 | .surveyButton { |
---|
235 | color: #444; |
---|
236 | font-weight: bold; |
---|
237 | background-color: transparent; |
---|
238 | border: 1px solid #555; |
---|
239 | -moz-border-radius: 6px; |
---|
240 | border-radius: 6px; |
---|
241 | } |
---|
242 | |
---|
243 | .bigSurveyButton { |
---|
244 | margin-top: 1px; |
---|
245 | height: 3em; |
---|
246 | width: 12em; |
---|
247 | } |
---|
248 | |
---|
249 | .surveyButton:hover { |
---|
250 | background-color: #e3eff3; |
---|
251 | color: #111; |
---|
252 | border-color: deepskyblue; |
---|
253 | } |
---|
254 | |
---|
255 | .surveyButton:active { |
---|
256 | background-color: #fff; |
---|
257 | border-style: inset; |
---|
258 | border-color: orange; |
---|
259 | } |
---|
260 | |
---|
261 | .question { |
---|
262 | margin-top: 3em; |
---|
263 | border-top: 1px solid #ddd; |
---|
264 | text-shadow: #fff 0px 0px 1px; |
---|
265 | } |
---|
266 | |
---|
267 | .questionTable td{ |
---|
268 | width: 8em; |
---|
269 | } |
---|
270 | |
---|
271 | .questionTable th{ |
---|
272 | text-align: left; |
---|
273 | } |
---|
274 | |
---|
275 | label { |
---|
276 | font-size: small; |
---|
277 | font-weight: bold; |
---|
278 | color: #555; |
---|
279 | } |
---|
280 | |
---|
281 | |
---|
282 | |
---|
283 | /* ################################################################## |
---|
284 | ===================== STYLESHEET OF GLORY ======================== */ |
---|
285 | |
---|
286 | .menu { |
---|
287 | width: 30em; |
---|
288 | margin: 1em auto 0 auto; |
---|
289 | padding: 2em; |
---|
290 | text-align: center; |
---|
291 | background-image: url('../images/bg/graygradient.png'); |
---|
292 | background-repeat: repeat-x; |
---|
293 | background-color: #aeb2b3; |
---|
294 | -moz-border-radius: 15px; |
---|
295 | border-radius: 15px; |
---|
296 | border: 1px solid white; |
---|
297 | } |
---|
298 | |
---|
299 | .menuButtons { |
---|
300 | float: left; |
---|
301 | } |
---|
302 | |
---|
303 | .toLoad { |
---|
304 | background-color: #c6c6c6; |
---|
305 | width: 23em; |
---|
306 | height: 10em; |
---|
307 | } |
---|
308 | |
---|
309 | /* ################################################################## |
---|
310 | ===================== STYLESHEET OF GLORY ======================== */ |
---|
311 | |
---|
312 | .topMargin { |
---|
313 | margin-top: 2em; |
---|
314 | } |
---|
315 | |
---|
316 | .leftPadding { |
---|
317 | padding-left: 2em; |
---|
318 | } |
---|
319 | |
---|
320 | .noPadding { |
---|
321 | padding: 0; |
---|
322 | } |
---|
323 | |
---|
324 | .centerBoxed { |
---|
325 | margin: 1em auto; |
---|
326 | width: 30em; |
---|
327 | text-align: center; |
---|
328 | padding: 0 1em; |
---|
329 | font-size: small; |
---|
330 | color: white; |
---|
331 | /* border: 1px solid gray;*/ |
---|
332 | } |
---|
333 | |
---|
334 | /* ################################################################## |
---|
335 | ===================== STYLESHEET OF GLORY ======================== */ |
---|
336 | |
---|
337 | .answerBox { |
---|
338 | padding-left: 1em; |
---|
339 | } |
---|
340 | |
---|
341 | .textBox { |
---|
342 | width: 20em; |
---|
343 | } |
---|
344 | |
---|
345 | .intBox { |
---|
346 | width: 5em; |
---|
347 | margin: 0 .3em; |
---|
348 | border: 1px solid #abadb3; |
---|
349 | } |
---|
350 | |
---|
351 | .scaleLabel { |
---|
352 | display: inline; |
---|
353 | color: #333; |
---|
354 | } |
---|
355 | |
---|
356 | .questionTitle { |
---|
357 | |
---|
358 | } |
---|
359 | |
---|
360 | .questionDescription { |
---|
361 | font-size: small; |
---|
362 | } |
---|