blob: f20b1be3c688e14bc14385aea3adf43926c5929d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
html, body {
font-family: sans-serif;
font-size: 90%;
margin: 0;
height: 100%;
}
body.videopage {
background: #181818;
}
#notfooter {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -5em;
}
#push {
height: 5em;
background: #3C3C3C;
}
header {
background: white;
margin: 0 auto 0 auto;
padding: 0.5em 10% 0em 10%;
}
header h1 {
display: inline;
font-size: 14pt;
color: #7bc043;
}
header h1 img {
vertical-align: middle;
}
header nav {
display: inline;
float: right;
margin-top: 2em;
}
nav ul {
list-style: none;
display: inline;
padding-left: 0;
}
nav ul li {
display: inline;
padding-right: 1em;
}
nav.primary a {
padding: 0.25em 0.5em 0.25em 0.5em;
text-decoration: none;
color: #BDBDBD;
font-weight: bold;
}
nav.primary a:hover {
color: #9ace00;
}
nav.primary a.current {
background: #A9A9A9;
color: white;
border: solid thin #A9A9A9;
border-radius: 5px;
-moz-border-radius: 5px;
}
#hero {
background: url('images/hero.png') #262626 no-repeat top center;
width: 100%;
color: white;
text-align: center;
padding: 250px 0 50px 0;
}
#hero p {
width: 75%;
margin: 0 auto 0 auto;
}
#middlebar {
background: #262626;
color: white;
}
#noticebox {
font-size: 90%;
padding: 1.5em 20% 1.5em 20%;
max-width: 700px;
margin: 0 auto 0 auto;
}
#noticebox img.icon {
float: left;
margin-right: 2em;
}
#noticebox .close {
float: right;
}
#content {
text-align: center;
color: #b0b0b0;
padding-bottom: 5em;
margin: 1em auto 1em auto;
max-width: 900px;
}
#content article {
max-width: 700px;
margin: 1em auto 1em auto;
}
#content h1 {
color: #696969;
font-size: 24pt;
}
#getstarted {
background: #F5F5F5;
padding: 3em;
text-align: center;
font-size: 150%;
}
a.greenbutton {
background: #bcea2f;
border: solid 2px #afdc29;
color: white;
padding: 0.5em 1.5em 0.5em 1.5em;
text-decoration: none;
border-radius: 5px;
-moz-border-radius: 5px;
}
a.greenbutton:hover {
background: #b8e62e;
}
a img {
vertical-align: middle;
}
footer {
background: #3C3C3C;
color: #737373;
font-weight: bold;
font-size: 80%;
padding: 2em 20% 0 20%;
height: 3em;
}
footer .left {
float: left;
}
footer .right {
float: right;
}
footer a {
color: #ACACAC;
text-decoration: none;
margin: 0 0.25em 0 0.25em;
}
footer a:hover {
color: white;
}
#previous, #next {
margin-top: 25%;
}
#previous {
float: left;
}
#next {
float: right;
}
.imageQuestion img {
padding: 1em;
}
.textQuestion {
margin-top: 3em;
}
.textQuestion .answer {
background: #ededed;
width: 90%;
margin: 0.5em auto 0.5em auto;
text-align: left;
padding: 1em;
color: #676767;
font-weight: bold;
cursor: pointer;
}
.textQuestion .answer:hover, .textQuestion .selected {
background: #fe6000;
color: white;
}
.textQuestion .question a {
text-decoration: none;
}
|