1
|
@charset "UTF-8";
|
2
|
/* <![CDATA[ */
|
3
|
/*
|
4
|
*/
|
5
|
* { margin :0px auto; padding :0px; }
|
6
|
* html body * { overflow :visible; }
|
7
|
|
8
|
html {
|
9
|
padding:0;
|
10
|
margin:0;
|
11
|
border:0;
|
12
|
font-size:85%; font-family: Arial, Verdana, Helvetica, sans-serif;
|
13
|
color: #202020;
|
14
|
overflow :-moz-scrollbars-vertical;
|
15
|
overflow-x :auto;
|
16
|
}
|
17
|
table {font-size: 1em; border-collapse: collapse; width: 100%;}
|
18
|
body {
|
19
|
padding: 0; border:0; margin: 0;
|
20
|
background: url('background.png') repeat-x 0px 0px;
|
21
|
background-color: #a8bccb;
|
22
|
height: 101%;
|
23
|
}
|
24
|
|
25
|
div.body {
|
26
|
width: 60em;
|
27
|
margin: 2em auto;
|
28
|
background-color: #ffffff;
|
29
|
border: solid 1px #305c8d;
|
30
|
padding: 20px 20px 5px 20px;
|
31
|
border-radius: 1%;
|
32
|
-webkit-box-shadow: 2px 2px 15px -2px rgba(0,0,0,0.75);
|
33
|
-moz-box-shadow: 2px 2px 15px -2px rgba(0,0,0,0.75);
|
34
|
box-shadow: 2px 2px 15px -2px rgba(0,0,0,0.75);
|
35
|
}
|
36
|
|
37
|
.welcome {
|
38
|
color: #6F7374;
|
39
|
padding: 5px;
|
40
|
text-align: center;
|
41
|
font-size: 1.525em;
|
42
|
font-weight: bold;
|
43
|
|
44
|
}
|
45
|
div.content {
|
46
|
margin-top:20px;
|
47
|
}
|
48
|
|
49
|
/*
|
50
|
TABLE Elements
|
51
|
*/
|
52
|
table {
|
53
|
background-color: #f8f8ff;
|
54
|
margin-top: 15px;
|
55
|
margin-bottom: 5px;
|
56
|
width: 100%;
|
57
|
border-style: solid;
|
58
|
border-width: 1px 2px 2px 1px;
|
59
|
border-color: #a3baca;
|
60
|
}
|
61
|
table > thead {
|
62
|
background-color: #f2f1ff;
|
63
|
}
|
64
|
table > thead > tr {
|
65
|
}
|
66
|
table > thead > tr > th {
|
67
|
color: #6F7374;
|
68
|
font-size: 1.125em;
|
69
|
padding: 0.525em 0.2em;
|
70
|
text-align: left;
|
71
|
border-bottom :1px groove #7E7171; /* #d2d1cc; */
|
72
|
}
|
73
|
table > thead > tr > td {
|
74
|
color: #555758;
|
75
|
font-size: 1.08em;
|
76
|
padding: 1.2em 1em;
|
77
|
}
|
78
|
table > tbody {
|
79
|
display: block;
|
80
|
padding: 0.5em 0;
|
81
|
}
|
82
|
table > tbody > tr {
|
83
|
border-bottom :0px solid #222222; /* #d2d1cc; */
|
84
|
padding :0.8em 0 0.2em 0;
|
85
|
width :100%;
|
86
|
}
|
87
|
table > tbody > tr > th {
|
88
|
font-size: 1em;
|
89
|
width: 1%;
|
90
|
padding-left: 0.8em; padding-right: 0.8em;
|
91
|
vertical-align: top;
|
92
|
text-align: right;
|
93
|
white-space: nowrap;
|
94
|
}
|
95
|
table > tbody > tr > td {
|
96
|
font-size: 1em;
|
97
|
width: 19%;
|
98
|
padding-left: 0.8em; padding-right: 0.8em;
|
99
|
vertical-align: top;
|
100
|
text-align: left;
|
101
|
line-height :2em;
|
102
|
}
|
103
|
|
104
|
td.step-row {
|
105
|
line-height : 3em;
|
106
|
color : #666666;
|
107
|
font-weight : bold;
|
108
|
font-size : 100%;
|
109
|
}
|
110
|
td.name {
|
111
|
width : 180px;
|
112
|
color: #666666;
|
113
|
vertical-align :middle;
|
114
|
font-weight : bold;
|
115
|
font-size : 90%;
|
116
|
float :left;
|
117
|
}
|
118
|
td.value {
|
119
|
width : 60%;
|
120
|
vertical-align :middle;
|
121
|
}
|
122
|
td.value input {
|
123
|
width : 100%;
|
124
|
vertical-align :middle;
|
125
|
}
|
126
|
|
127
|
|
128
|
h1.step-row {
|
129
|
margin : 0;
|
130
|
display :inline;
|
131
|
color : #6699ff;
|
132
|
}
|
133
|
/*
|
134
|
FORM Elements
|
135
|
*/
|
136
|
form { margin: 0; }
|
137
|
input, select { padding: 2px; border: solid 1px #a3baca; }
|
138
|
input:focus, select:focus { background: #fdf8e8; }
|
139
|
input.submit {
|
140
|
color: #305c8d;
|
141
|
font-size: 12px;
|
142
|
font-weight: bold;
|
143
|
text-transform: uppercase;
|
144
|
letter-spacing: 1px;
|
145
|
padding: 6px;
|
146
|
margin: 1em 0;
|
147
|
cursor: pointer;
|
148
|
border: outset 2px green;
|
149
|
}
|
150
|
input.submit:hover {
|
151
|
border-style: inset;
|
152
|
}
|
153
|
input.submit.bad {
|
154
|
background-color: #fde8e8;
|
155
|
border-color: red;
|
156
|
}
|
157
|
input.submit.good {
|
158
|
background-color: #deffde;
|
159
|
border-color: green;
|
160
|
}
|
161
|
/*
|
162
|
COMMON Elements
|
163
|
*/
|
164
|
img {border: none; }
|
165
|
p { margin: 11px 0 4px 0 }
|
166
|
h1 { color: #3a628f; font-size: 1.3em; margin: 10px 0 5px; border-top: medium none }
|
167
|
a, a:link, a:visited, a:active { color: #003366; text-decoration: underline }
|
168
|
a:focus {outline: none; }
|
169
|
a:hover { color: #336699 }
|
170
|
/*
|
171
|
HINTS
|
172
|
*/
|
173
|
|
174
|
.warning, .error {
|
175
|
color: #b70000;
|
176
|
line-height: 1.2em;
|
177
|
background-color: #fde8e8;
|
178
|
margin-top: 0.5em;
|
179
|
padding: 0.3em 0.5em;
|
180
|
border: solid 1px
|
181
|
}
|
182
|
.warning {
|
183
|
color: #ca6800;
|
184
|
}
|
185
|
.bad { color: #b70000; font-weight: bold;}
|
186
|
.good { color: #118301; font-weight: bold; }
|
187
|
.warn { color: #ca6800; }
|
188
|
.hint { color: #464646; font-size: 0.85em; }
|
189
|
.small { font-size: 0.85em; }
|
190
|
.italic { font-style: italic; }
|
191
|
.center { text-align: center; }
|
192
|
.hide { display: none; }
|
193
|
/*
|
194
|
List Elements
|
195
|
*/
|
196
|
ul { margin: 0; padding: 2px 0 2px 15px; }
|
197
|
li { list-style-type: square; margin: 0; }
|
198
|
/* ************************************************************************** */
|