source: Dev/branches/cakephp/app/webroot/css/awesome.css @ 126

Last change on this file since 126 was 126, checked in by fpvanagthoven, 14 years ago

Cakephp branch.

File size: 8.9 KB
Line 
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
14h1 {
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
22h2 {
23    margin: 0;
24    font-size: larger;
25}
26
27h3 {
28    margin: 0;
29    font-size: small;
30    font-weight: normal;
31    color: #333;
32}
33
34label {
35    font-size: small;
36    font-weight: bold;
37    color: #333;
38    text-shadow: #fff 0px 0px 1px;
39}
40
41legend {
42    padding-left: 0em;
43    color: #fff;
44    text-shadow: #000 0px 0px .4em;
45}
46
47fieldset {
48    background-color: #aeb2b3;
49    border: 1px solid #fff;
50    -moz-border-radius: 15px;
51    border-radius: 15px;
52    margin-bottom: 2em;
53    padding: 0 1em 1em 1em;
54    -moz-box-shadow: 2px 2px 1px #888;
55    -webkit-box-shadow: 2px 2px 1px #888;
56    box-shadow: 2px 2px 1px #888;
57}
58html {
59    background-image: url('../img/bg/blueishgridblock.png');
60    height: 100%;
61}
62
63root {
64    display: block;
65}
66
67body {
68    font-family: sans-serif;
69    background-image: url('../img/bg/blueishgrid.png');
70    background-repeat: repeat-x;
71    margin: 0;
72    padding: 0;
73    height: 100%;
74}
75
76input {
77    background-color: #c6c6c6;
78    border: 1px solid #888;
79}
80
81textarea {
82    background-color: #c6c6c6;
83    border: 1px solid #888;
84}
85
86select {
87    background-color: #c6c6c6;
88    border: 1px solid #888;
89}
90
91#wrapper {
92    width: 80%;
93    min-width: 800px;
94    margin: auto;
95}
96
97#header {
98    height: 4em;
99    background-color: transparent;
100}
101
102#logo{
103    background-image: url('../img/headlogo.png');
104    background-position: top center;
105    background-repeat: no-repeat;
106    font-size: 2em;
107    font-weight: bold;
108    text-align: center;
109    line-height: 2em;
110    text-shadow: #555 0px 0px .2em;
111    height: 189px;
112}
113
114#logo a {
115    text-decoration: none;
116    color: #ddd;
117}
118
119#logo a:hover {
120    color: #fff;
121}
122
123#content {
124    position: relative;
125    width: 100%;
126    padding: 2em 0;
127}
128
129
130
131/* ##################################################################
132   ===================== STYLESHEET OF GLORY ======================== */
133
134#creation {
135    position: relative;
136    min-height: 10em;
137    background-image: url('../img/bg/graygradient.png');
138    background-repeat: repeat-x;
139    background-color: #aeb2b3;
140    -moz-border-radius: 15px;
141    border-radius: 15px;
142    -moz-box-shadow: 2px 2px 2px #888;
143    -webkit-box-shadow: 2px 2px 2px #888;
144    box-shadow: 2px 2px 2px #888;
145    padding: 2em;
146    border: 1px solid white;
147}
148
149#surveyHead {
150    position: relative;
151    width: 100%;
152}
153
154#surveyTitle {
155
156}
157
158#surveyTitle:hover {
159
160}
161
162.titleBox {
163    width: 17em;
164    font-size: large;
165    color: #555;
166}
167
168.titleBox:hover {
169    color: black;
170}
171
172#surveyDescription {
173
174}
175
176.descriptionBox {
177    display: block;
178    width: 30em;
179    max-width: 30em;
180    font-family: sans-serif;
181    color: #555;
182}
183
184#timeStamp {
185    position: absolute;
186    color: #333;
187    font-size: small;
188    right: 6em;
189    top: 0;
190    line-height: 2.3em;
191}
192
193#surveySaveButton {
194    position: absolute;
195    top: 0;
196    right: 0;
197    width: 5em;
198}
199
200#surveyDescription:hover {
201    color: black;
202}
203
204#surveyLink {
205    position: absolute;
206    top: -2em;
207    right: 0;
208    font-size: x-small;
209    color: #333;
210    width: 30em;
211    border-color: transparent;
212    background-color: transparent;
213}
214
215#questionsDiv {
216    margin-top: 2em;
217}
218
219.answersDiv {
220    margin-left: 0.5em;
221}
222
223#submitSurvey {
224    display: block;
225    height: 3em;
226    width: 10em;
227    margin-top: 2em;
228    background-color: #aeb2b3;
229    border: 1px solid white;
230}
231
232#submitSurvey:hover {
233    background-color: #e3eff3;
234    color: #111;
235    border-color: deepskyblue;
236}
237
238#submitSurvey:active {
239    background-color: #fff;
240    border-style: inset;
241    border-color: orange;
242}
243
244#addQuestionButton {
245    margin-top: 1em;
246    width: 20em;
247}
248
249#addOpt {
250    margin-left: 1em;
251}
252
253
254.surveyButton {
255    color: #444;
256    font-weight: bold;
257    background-color: transparent;
258    border: 1px solid #555;
259    -moz-border-radius: 6px;
260    border-radius: 6px;
261}
262
263.bigSurveyButton {
264    margin-top: 1px;
265    height: 3em;
266    width: 12em;
267}
268
269.surveyButton:hover {
270    background-color: #e3eff3;
271    color: #111;
272    border-color: deepskyblue;
273}
274
275.surveyButton:active {
276    background-color: #fff;
277    border-style: inset;
278    border-color: orange;
279}
280
281.question { 
282    margin-top: 3em;
283    border-top: 1px solid #ddd;
284    text-shadow: #fff 0px 0px 1px;
285}
286
287.questionTable td{
288    width: 8em;
289}
290
291.questionTable th{
292    text-align: left;
293}
294
295
296
297/* ##################################################################
298   ===================== STYLESHEET OF GLORY ======================== */
299
300.menu {
301    width: 30em;
302    margin: 1em auto 0 auto;
303    padding: 2em;
304    text-align: center;
305/*    background-image: url('../img/bg/graygradient.png');*/
306    background-repeat: repeat-x;
307    background-color: #aeb2b3;
308    -moz-border-radius: 15px;
309    border-radius: 15px;
310    border: 1px solid white;
311}
312
313.menuButtons {
314    float: left;
315}
316
317.toLoad {
318    background-color: #c6c6c6;
319    width: 23em;
320    height: 10em;
321}
322
323/* ##################################################################
324   ===================== STYLESHEET OF GLORY ======================== */
325.padding2em {
326    padding: 2em;
327}
328
329.padding1em {
330    padding: 1em;
331}
332
333.topMargin {
334    margin-top: 2em;
335}
336
337.leftPadding {
338    padding-left: 2em;
339}
340
341.leftPadding1 {
342    padding-left: 1em;
343}
344
345.noPadding {
346    padding: 0;
347}
348
349.centerBoxed {
350    margin: 1em auto;
351    width: 30em;
352    text-align: center;
353    padding: 0 1em;
354    font-size: small;
355    color: white;
356    /*    border: 1px solid gray;*/
357}
358
359.nextLine {
360    display: block;
361}
362
363.leftAlign {
364    text-align: left;
365}
366
367.leftMargin {
368    margin-left: 10px;
369}
370
371.width100p {
372    width: 100%;
373}
374
375.floatLeft {
376    float: left;
377}
378
379/* ##################################################################
380   ===================== STYLESHEET OF GLORY ======================== */
381
382.answerInput {
383    display: block;
384}
385
386.answerBox {
387    padding-left: 1em;
388}
389
390.textBox {
391    width: 20em;
392}
393
394.intBox {
395    width: 5em;
396    margin: 0 .3em;
397    border: 1px solid #abadb3;
398}
399
400.scaleLabel {
401    display: inline;
402    color: #333;
403}
404
405.questionTitle {
406
407}
408
409.questionDescription {
410    font-size: small;
411}
412
413.topRight {
414    position: absolute;
415    top: 2.3em;
416    right: 2.3em;
417    padding-left: 1em;
418    padding-right: 1em;
419}
420
421.borderRadius {
422    -moz-border-radius: 15px;
423    border-radius: 15px;
424}
425
426.boxShadow {
427    -moz-box-shadow: 2px 2px 2px #888;
428    -webkit-box-shadow: 2px 2px 2px #888;
429    box-shadow: 2px 2px 2px #888;
430}
431
432/* ##################################################################
433   ===================== STYLESHEET OF GLORY ======================== */
434
435#questionEditForm {
436
437}
438
439#saveQuestion {
440    position: absolute;
441    top: 1em;
442    right: 1em;
443}
444
445#clearQuestionFields {
446    position: absolute;
447    top: 1em;
448    right: 5em;
449}
450
451/* ##################################################################
452   ===================== STYLESHEET OF GLORY ======================== */
453#sessionCreationForm {
454    padding-bottom: 16em;
455}
456
457#pipelineWrapper {
458    float: left;
459    width: 40%;
460}
461
462.pipelineHead {
463    margin-top: 1em;
464    text-shadow: #fff 0px 0px 1px;
465}
466
467#pipeline {
468    display: block;
469    width: 100%;
470    height: 15em;
471    overflow: hidden;
472}
473
474#surveysList {
475    height: 15em;
476}
477
478#applicationsList {
479    height: 15em;
480}
481
482.pipelineButton {
483
484}
485
486#surveysApplicationsWrapper {
487    float: left;
488    width: 60%;
489}
490
491#surveysForPipelineWrapper {
492    float: left;
493    width: 50%;
494}
495
496#applicationsForPipelineWrapper {
497    float: left;
498    width: 50%;
499}
500
501/* ##################################################################
502   ===================== STYLESHEET OF GLORY ======================== */
503.resultsDiv {
504    height: 10em;
505    border: 1px solid white;
506}
507
508.resultDiv {
509    width: 10em;
510    height: 10em;
511    border: 1px solid white;
512    background-color: #c6c6c6;
513    float: left;
514    margin-left: 2em;
515}
516
517/* ##################################################################
518   ===================== STYLESHEET OF GLORY ======================== */
519#questionCreation
520{
521    position: relative;
522    min-height: 10em;
523    min-width: 500px;
524    width: 50%;
525    background-image: url('../img/bg/graygradient.png');
526    background-repeat: repeat-x;
527    background-color: #aeb2b3;
528    -moz-border-radius: 15px;
529    border-radius: 15px;
530    -moz-box-shadow: 2px 2px 2px #888;
531    -webkit-box-shadow: 2px 2px 2px #888;
532    box-shadow: 2px 2px 2px #888;
533    padding: 2em;
534    border: 1px solid white;
535}
536
537#questionListWrapper {
538    float: left;
539    text-align: center;
540    margin-bottom: 5em;
541    width: 40%;
542    margin-right: 2em;
543}
544
545#questionListWrapper #questionsList {
546    height: 30em;
547    width: 100%;
548}
549
550#questionEditForm {
551   
552}
553
554/* ##################################################################
555   ===================== STYLESHEET OF GLORY ======================== */
556.xdebug-var-dump {
557    color:white;
558}
Note: See TracBrowser for help on using the repository browser.