source: Dev/trunk/css/awesome.css @ 144

Last change on this file since 144 was 144, checked in by fpvanagthoven, 13 years ago

Fixed mkdir call in ApplicationConnector?.php, now actually makes a directory instead of errors.
Cleaning up of pipeline Sequencer, smaller icons, etc. Trying to get non-db version of editor working properly, then integrate db calls.

File size: 12.8 KB
RevLine 
[59]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
[103]34label {
[104]35    font-size: small;
36    font-weight: bold;
37    color: #333;
[103]38    text-shadow: #fff 0px 0px 1px;
39}
40
[59]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('../images/bg/blueishgridblock.png');
60    height: 100%;
[144]61    font-size: 12px;
[59]62}
63
64root {
65    display: block;
66}
67
68body {
69    font-family: sans-serif;
70    background-image: url('../images/bg/blueishgrid.png');
71    background-repeat: repeat-x;
72    margin: 0;
73    padding: 0;
74    height: 100%;
75}
76
77input {
78    background-color: #c6c6c6;
79    border: 1px solid #888;
80}
81
82textarea {
83    background-color: #c6c6c6;
84    border: 1px solid #888;
85}
86
87select {
88    background-color: #c6c6c6;
89    border: 1px solid #888;
90}
91
92#wrapper {
93    width: 80%;
[97]94    min-width: 800px;
[59]95    margin: auto;
96}
97
98#header {
99    height: 4em;
100    background-color: transparent;
101}
102
103#logo{
104    background-image: url('../images/headlogo.png');
105    background-position: top center;
106    background-repeat: no-repeat;
107    font-size: 2em;
108    font-weight: bold;
109    text-align: center;
110    line-height: 2em;
111    text-shadow: #555 0px 0px .2em;
112    height: 189px;
113}
114
115#logo a {
116    text-decoration: none;
117    color: #ddd;
118}
119
120#logo a:hover {
121    color: #fff;
122}
123
124#content {
125    position: relative;
126    width: 100%;
127    padding: 2em 0;
128}
129
130
131
132/* ##################################################################
133   ===================== STYLESHEET OF GLORY ======================== */
134
[103]135#creation {
[64]136    position: relative;
[59]137    min-height: 10em;
138    background-image: url('../images/bg/graygradient.png');
139    background-repeat: repeat-x;
140    background-color: #aeb2b3;
141    -moz-border-radius: 15px;
142    border-radius: 15px;
143    -moz-box-shadow: 2px 2px 2px #888;
144    -webkit-box-shadow: 2px 2px 2px #888;
145    box-shadow: 2px 2px 2px #888;
146    padding: 2em;
147    border: 1px solid white;
148}
149
150#surveyHead {
151    position: relative;
152    width: 100%;
153}
154
155#surveyTitle {
[64]156
157}
158
159#surveyTitle:hover {
160
161}
162
163.titleBox {
[59]164    width: 17em;
165    font-size: large;
166    color: #555;
167}
168
[64]169.titleBox:hover {
[59]170    color: black;
171}
172
173#surveyDescription {
[64]174
175}
176
177.descriptionBox {
[59]178    display: block;
179    width: 30em;
180    max-width: 30em;
181    font-family: sans-serif;
182    color: #555;
183}
184
185#timeStamp {
186    position: absolute;
187    color: #333;
188    font-size: small;
189    right: 6em;
190    top: 0;
191    line-height: 2.3em;
192}
193
194#surveySaveButton {
195    position: absolute;
196    top: 0;
197    right: 0;
198    width: 5em;
199}
200
201#surveyDescription:hover {
202    color: black;
203}
204
205#surveyLink {
206    position: absolute;
207    top: -2em;
208    right: 0;
209    font-size: x-small;
210    color: #333;
211    width: 30em;
212    border-color: transparent;
213    background-color: transparent;
214}
215
216#questionsDiv {
217    margin-top: 2em;
218}
219
220.answersDiv {
221    margin-left: 0.5em;
222}
223
224#submitSurvey {
225    display: block;
226    height: 3em;
227    width: 10em;
228    margin-top: 2em;
229    background-color: #aeb2b3;
230    border: 1px solid white;
231}
232
233#submitSurvey:hover {
234    background-color: #e3eff3;
235    color: #111;
236    border-color: deepskyblue;
237}
238
239#submitSurvey:active {
240    background-color: #fff;
241    border-style: inset;
242    border-color: orange;
243}
244
245#addQuestionButton {
246    margin-top: 1em;
247    width: 20em;
248}
249
250#addOpt {
251    margin-left: 1em;
252}
253
254
255.surveyButton {
256    color: #444;
257    font-weight: bold;
258    background-color: transparent;
259    border: 1px solid #555;
260    -moz-border-radius: 6px;
261    border-radius: 6px;
262}
263
264.bigSurveyButton {
265    margin-top: 1px;
266    height: 3em;
267    width: 12em;
268}
269
270.surveyButton:hover {
271    background-color: #e3eff3;
272    color: #111;
273    border-color: deepskyblue;
274}
275
276.surveyButton:active {
277    background-color: #fff;
278    border-style: inset;
279    border-color: orange;
280}
281
282.question { 
283    margin-top: 3em;
284    border-top: 1px solid #ddd;
285    text-shadow: #fff 0px 0px 1px;
286}
287
288.questionTable td{
289    width: 8em;
290}
291
292.questionTable th{
293    text-align: left;
294}
295
296
297
298/* ##################################################################
299   ===================== STYLESHEET OF GLORY ======================== */
300
301.menu {
302    width: 30em;
303    margin: 1em auto 0 auto;
304    padding: 2em;
305    text-align: center;
306    background-image: url('../images/bg/graygradient.png');
307    background-repeat: repeat-x;
308    background-color: #aeb2b3;
309    -moz-border-radius: 15px;
310    border-radius: 15px;
311    border: 1px solid white;
312}
313
314.menuButtons {
315    float: left;
316}
317
318.toLoad {
319    background-color: #c6c6c6;
320    width: 23em;
321    height: 10em;
322}
323
324/* ##################################################################
325   ===================== STYLESHEET OF GLORY ======================== */
[64]326.padding2em {
327    padding: 2em;
328}
[59]329
[75]330.padding1em {
[102]331    padding: 1em;
[75]332}
333
[59]334.topMargin {
335    margin-top: 2em;
336}
337
338.leftPadding {
339    padding-left: 2em;
340}
341
[64]342.leftPadding1 {
343    padding-left: 1em;
344}
345
[59]346.noPadding {
347    padding: 0;
348}
349
350.centerBoxed {
351    margin: 1em auto;
352    width: 30em;
353    text-align: center;
354    padding: 0 1em;
355    font-size: small;
356    color: white;
357    /*    border: 1px solid gray;*/
358}
359
[64]360.nextLine {
361    display: block;
362}
363
364.leftAlign {
365    text-align: left;
366}
367
[104]368.leftMargin {
369    margin-left: 10px;
370}
371
[65]372.width100p {
373    width: 100%;
374}
375
[104]376.floatLeft {
377    float: left;
378}
379
[59]380/* ##################################################################
381   ===================== STYLESHEET OF GLORY ======================== */
382
[103]383.answerInput {
384    display: block;
385}
386
[59]387.answerBox {
388    padding-left: 1em;
389}
390
391.textBox {
392    width: 20em;
393}
394
395.intBox {
396    width: 5em;
397    margin: 0 .3em;
398    border: 1px solid #abadb3;
399}
400
401.scaleLabel {
402    display: inline;
403    color: #333;
404}
405
406.questionTitle {
407
408}
409
410.questionDescription {
411    font-size: small;
[64]412}
413
[68]414.topRight {
415    position: absolute;
416    top: 2.3em;
417    right: 2.3em;
418    padding-left: 1em;
419    padding-right: 1em;
420}
421
[75]422.borderRadius {
[102]423    -moz-border-radius: 15px;
[75]424    border-radius: 15px;
425}
426
427.boxShadow {
[102]428    -moz-box-shadow: 2px 2px 2px #888;
[75]429    -webkit-box-shadow: 2px 2px 2px #888;
430    box-shadow: 2px 2px 2px #888;
431}
432
[64]433/* ##################################################################
434   ===================== STYLESHEET OF GLORY ======================== */
[104]435
436#questionEditForm {
437
438}
439
440#saveQuestion {
441    position: absolute;
442    top: 1em;
443    right: 1em;
444}
445
[112]446#clearQuestionFields {
447    position: absolute;
448    top: 1em;
449    right: 5em;
450}
451
[104]452/* ##################################################################
453   ===================== STYLESHEET OF GLORY ======================== */
[65]454#sessionCreationForm {
[67]455    padding-bottom: 16em;
[65]456}
457
458#pipelineWrapper {
459    float: left;
460    width: 40%;
461}
462
463.pipelineHead {
[64]464    margin-top: 1em;
465    text-shadow: #fff 0px 0px 1px;
466}
467
468#pipeline {
[65]469    display: block;
470    width: 100%;
[67]471    height: 15em;
[65]472    overflow: hidden;
[64]473}
474
[67]475#surveysList {
476    height: 15em;
477}
478
479#applicationsList {
480    height: 15em;
481}
482
[64]483.pipelineButton {
[67]484
[64]485}
486
[65]487#surveysApplicationsWrapper {
488    float: left;
489    width: 60%;
490}
491
492#surveysForPipelineWrapper {
493    float: left;
494    width: 50%;
495}
496
497#applicationsForPipelineWrapper {
498    float: left;
499    width: 50%;
[75]500}
501
502/* ##################################################################
503   ===================== STYLESHEET OF GLORY ======================== */
504.resultsDiv {
[102]505    height: 10em;
506    border: 1px solid white;
[75]507}
508
509.resultDiv {
[102]510    width: 10em;
511    height: 10em;
512    border: 1px solid white;
513    background-color: #c6c6c6;
514    float: left;
515    margin-left: 2em;
[92]516}
517
518/* ##################################################################
519   ===================== STYLESHEET OF GLORY ======================== */
[104]520#questionCreation
521{
522    position: relative;
523    min-height: 10em;
524    min-width: 500px;
525    width: 50%;
526    background-image: url('../images/bg/graygradient.png');
527    background-repeat: repeat-x;
528    background-color: #aeb2b3;
529    -moz-border-radius: 15px;
530    border-radius: 15px;
531    -moz-box-shadow: 2px 2px 2px #888;
532    -webkit-box-shadow: 2px 2px 2px #888;
533    box-shadow: 2px 2px 2px #888;
534    padding: 2em;
535    border: 1px solid white;
536}
537
[102]538#questionListWrapper {
[104]539    float: left;
[102]540    text-align: center;
[104]541    margin-bottom: 5em;
542    width: 40%;
543    margin-right: 2em;
[102]544}
545
546#questionListWrapper #questionsList {
547    height: 30em;
[104]548    width: 100%;
[102]549}
550
551#questionEditForm {
552   
553}
554
555/* ##################################################################
556   ===================== STYLESHEET OF GLORY ======================== */
[92]557.xdebug-var-dump {
558    color:white;
[142]559}
560
561
562/*
563#pipelineFrame{
564    height: 12em;
565    width: 96em;
566    display: block;
567    background-image: url('../images/bg/pipelineFrameBG.png');
568    background-color: #e3eff3;
569}
570
571.pipelineFrame .pipelineObject {
572    width: 10em;
573    height: 10em;
574    margin: 1em auto 1em auto;
575    text-align: center;
576}
577*/
578
579/*
580*
581*
582*   Horizontal sequencer styling
583*
584*
585*/
586
587#sequencer {
588    width: 100%;
[144]589    margin: 0 auto 0 auto;
590    /*background-image: url('../images/bg/sequencerBG.png');*/
591    background-image: linear-gradient(top, #B0B0B0 21%, #888888 80%);
592    background-image: -o-linear-gradient(top, #B0B0B0 21%, #888888 80%);
593    background-image: -moz-linear-gradient(top, #B0B0B0 21%, #888888 80%);
594    background-image: -webkit-linear-gradient(top, #B0B0B0 21%, #888888 80%);
595    background-image: -ms-linear-gradient(top, #B0B0B0 21%, #888888 80%);
596
597    background-image: -webkit-gradient(
598        linear,
599        left top,
600        left bottom,
601        color-stop(0.21, #B0B0B0),
602        color-stop(0.8, #888888)
603    );
[142]604    background-position: bottom;
605    background-repeat: repeat-x;
606}
607
608#sequencer .title {
609    height: 1em;
610    margin-bottom: 0.5em;
611    margin-top:0.5em;
612    margin-left: 1em;
[144]613    font-size: 1.25em;
[142]614    color: #FFF;
615   
616}
617
[144]618#sequencer .seqContent {
619    height: 9em;
620    overflow-x: scroll;
621    overflow-y: hidden;
[142]622    margin-bottom: 0.5em;
[144]623   
624    background-image: linear-gradient(top, #B0B0B0 21%, #888888 80%);
625    background-image: -o-linear-gradient(top, #B0B0B0 21%, #888888 80%);
626    background-image: -moz-linear-gradient(top, #B0B0B0 21%, #888888 80%);
627    background-image: -webkit-linear-gradient(top, #B0B0B0 21%, #888888 80%);
628    background-image: -ms-linear-gradient(top, #B0B0B0 21%, #888888 80%);
629    background-image: -webkit-gradient(
630        linear,
631        left bottom,
632        left top,
633        color-stop(0.25, #B0B0B0),
634        color-stop(0.8, #888888)
635    );
636   
[142]637    border: 1px solid #ddd;
638    -moz-border-radius: 0.5em;
639    border-radius: 0.5em;
640    padding: 0.5em;
641}
642
643#sequencer #controls {
644    width: auto;
645    text-align: right;
646    margin-bottom: -0.5em;
647}
648
[144]649.seqContent .displayStep {
[142]650    /*height: 140px;*/
[144]651    width: 52px;
652    padding: 0;
[142]653    margin: 10px 0 0 0;
654    background-repeat: no-repeat;
655    float: left;
656    text-align: center;
657}
658
[144]659.seqContent .displayStep .displayStepIcon {
660    width: 50px;
661    height: 50px;
662    border: 2px solid #444444;
663    color: #FFF;
664    float: left;
665}
666
667.seqContent .displayStep p{
668    margin-top: 55px;
[142]669    font-weight: normal;
670    font-size: 0.875em;
[144]671    float: left;
[142]672   
673}
674
[144]675.seqContent .divider {
[142]676    width: 10px;
[144]677    height: 50px;
678    margin: 10px 15px 0 20px;
[142]679    background-image: url('../images/ui/sequencerDivider.png');
680    float: left;
681}
682
[144]683
684
685
686
687
[142]688/*
[144]689 *
690 *
691 *  TOOLBOX
692 *
693 *
[142]694*/
695
696#toolbox {
[144]697    /*width: 40%;*/
[142]698    float: left;
[144]699    /*background-image: url('../images/bg/sequencerBG.png');*/
700    background-image: linear-gradient(top, #B0B0B0 21%, #888888 80%);
701    background-image: -o-linear-gradient(top, #B0B0B0 21%, #888888 80%);
702    background-image: -moz-linear-gradient(top, #B0B0B0 21%, #888888 80%);
703    background-image: -webkit-linear-gradient(top, #B0B0B0 21%, #888888 80%);
704    background-image: -ms-linear-gradient(top, #B0B0B0 21%, #888888 80%);
705
706    background-image: -webkit-gradient(
707        linear,
708        left top,
709        left bottom,
710        color-stop(0.25, #B0B0B0),
711        color-stop(0.8, #888888)
712    );
713   
[142]714}
715
716#toolbox .title {
717    height: 1em;
718    margin-bottom: 0.5em;
719    margin-top:0.5em;
720    margin-left: 1em;
[144]721    font-size: 1.25em;
[142]722    color: #FFF;
723}
724
[144]725#toolbox .creationButton {
726    height: 50px;
727    margin: 0 0 5px 0;
728    border: 1px solid #000;
729    border-radius: 5px;
730    -moz-border-radius: 5px;
731}
732
733#toolbox .creationButton:hover {
734    border: 1px solid #FFF;
735    background: rgba(255, 255, 255, 0.2);
736}
737
738#toolbox .buttonIcon {
739    margin: 0 10px 0 5px;
[142]740    float: left;
741}
742
[144]743#toolbox .creationButton p {
744    margin: 15px 10px 0 0;
745    color: #444;
746    float: left;
[103]747}
Note: See TracBrowser for help on using the repository browser.