OLD | NEW |
1 @font-face | 1 @font-face |
2 { | 2 { |
3 font-family: "Source Sans Pro"; | 3 font-family: "Source Sans Pro"; |
4 src: url(/fonts/SourceSansPro-Light.woff); | 4 src: url(/fonts/SourceSansPro-Light.woff); |
5 /* local("Ø") forces using no local font called Source Sans Pro */ | 5 /* local("Ø") forces using no local font called Source Sans Pro */ |
6 src: local("Ø"), url(/fonts/SourceSansPro-Light.woff) format("woff"); | 6 src: local("Ø"), url(/fonts/SourceSansPro-Light.woff) format("woff"); |
7 font-weight: 300; | 7 font-weight: 300; |
8 font-style: normal; | 8 font-style: normal; |
9 } | 9 } |
10 | 10 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 text-decoration: none; | 54 text-decoration: none; |
55 } | 55 } |
56 | 56 |
57 header h1 | 57 header h1 |
58 { | 58 { |
59 box-sizing: border-box; | 59 box-sizing: border-box; |
60 border: dashed 1px #898989; | 60 border: dashed 1px #898989; |
61 border-left: none; | 61 border-left: none; |
62 border-right: none; | 62 border-right: none; |
63 padding: 18px; | 63 padding: 18px; |
64 margin: 68px auto 20px auto; | 64 margin: 68px auto 0px auto; |
65 max-width: 960px; | 65 max-width: 960px; |
66 font-weight: 300; | 66 font-weight: 300; |
67 font-size: 24px; | 67 font-size: 24px; |
68 color: #7d7d7d; | 68 color: #7d7d7d; |
69 text-align: center; | 69 text-align: center; |
70 } | 70 } |
71 | 71 |
72 header::before | 72 header::before |
73 { | 73 { |
74 content: ""; | 74 content: ""; |
(...skipping 19 matching lines...) Expand all Loading... |
94 margin: 0px auto; | 94 margin: 0px auto; |
95 max-width: 960px; | 95 max-width: 960px; |
96 } | 96 } |
97 | 97 |
98 section | 98 section |
99 { | 99 { |
100 padding: 20px 100px; | 100 padding: 20px 100px; |
101 margin-bottom: 30px; | 101 margin-bottom: 30px; |
102 } | 102 } |
103 | 103 |
| 104 section.clear |
| 105 { |
| 106 margin: 0px; |
| 107 text-align: center; |
| 108 } |
| 109 |
104 section.highlighted | 110 section.highlighted |
105 { | 111 { |
106 background-image: url(/img/background-blue.png); | 112 background-image: url(/img/background-blue.png); |
107 color: #FFFFFF; | 113 color: #FFFFFF; |
108 } | 114 } |
109 | 115 |
110 section.highlighted a | 116 section.highlighted a |
111 { | 117 { |
112 color: #FFFFFF; | 118 color: #FFFFFF; |
113 } | 119 } |
(...skipping 26 matching lines...) Expand all Loading... |
140 section li input | 146 section li input |
141 { | 147 { |
142 vertical-align: middle; | 148 vertical-align: middle; |
143 -webkit-margin-end: 10px; | 149 -webkit-margin-end: 10px; |
144 -moz-margin-end: 10px; | 150 -moz-margin-end: 10px; |
145 } | 151 } |
146 | 152 |
147 section li textarea | 153 section li textarea |
148 { | 154 { |
149 display: block; | 155 display: block; |
150 margin-top: 10px; | |
151 padding: 5px; | 156 padding: 5px; |
152 width: 250px; | 157 width: 250px; |
153 height: 50px; | 158 height: 50px; |
154 vertical-align: middle; | 159 vertical-align: middle; |
155 font-size: 14px; | 160 font-size: 14px; |
156 } | 161 } |
157 | 162 |
| 163 section li ul |
| 164 { |
| 165 margin-top: 10px; |
| 166 margin-bottom: 0px; |
| 167 } |
| 168 |
158 section .subheader | 169 section .subheader |
159 { | 170 { |
160 margin-top: 0px; | 171 margin-top: 0px; |
161 text-align: center; | 172 text-align: center; |
162 } | 173 } |
163 | 174 |
164 section .error-label | 175 section .error-label |
165 { | 176 { |
166 display: none; | 177 display: none; |
167 color: #ffafaf; | 178 color: #ffafaf; |
168 margin: 0px 12px; | 179 margin: 0px 12px; |
169 } | 180 } |
170 | 181 |
171 form button | 182 button, section.clear a |
172 { | 183 { |
173 min-width: 138px; | 184 min-width: 138px; |
| 185 border: 0px; |
| 186 color: #ffffff; |
| 187 cursor: pointer; |
| 188 } |
| 189 |
| 190 section.highlighted form button |
| 191 { |
174 height: 42px; | 192 height: 42px; |
175 background-color: #37506d; | 193 background-color: #37506d; |
176 border: 0px; | |
177 cursor: pointer; | |
178 color: #ffffff; | |
179 } | 194 } |
180 | 195 |
181 form.error button | 196 form.error button |
182 { | 197 { |
183 border: solid 2px #ffafaf; | 198 border: solid 2px #ffafaf; |
184 } | 199 } |
185 | 200 |
186 form.error .error-label | 201 form.error .error-label |
187 { | 202 { |
188 display: inline-block; | 203 display: inline-block; |
189 } | 204 } |
190 | 205 |
| 206 section.clear a |
| 207 { |
| 208 display: inline-block; |
| 209 padding: 14px 0px; |
| 210 margin: 0px 10px; |
| 211 background-color: #5cb85c; |
| 212 vertical-align: middle; |
| 213 font-size: 14px; |
| 214 text-decoration: none; |
| 215 align-items: flex-start; |
| 216 } |
| 217 |
| 218 section.clear a:hover |
| 219 { |
| 220 background-color: #47a447; |
| 221 } |
| 222 |
191 form input[type="checkbox"] | 223 form input[type="checkbox"] |
192 { | 224 { |
193 margin: 0px; | 225 margin: 0px; |
194 -webkit-margin-end: 10px; | 226 -webkit-margin-end: 10px; |
195 -moz-margin-end: 10px; | 227 -moz-margin-end: 10px; |
196 } | 228 } |
197 | 229 |
198 .disclaimer | 230 .disclaimer |
199 { | 231 { |
200 margin: 14px 0px; | 232 margin: 14px 0px; |
201 font-size: 14px; | 233 font-size: 14px; |
202 color: #a9bdd5; | 234 color: #a9bdd5; |
203 } | 235 } |
204 | 236 |
205 .hidden | 237 .hidden |
206 { | 238 { |
207 display: none; | 239 display: none; |
208 } | 240 } |
209 | 241 |
210 footer | 242 footer |
211 { | 243 { |
212 margin: 0 auto 30px; | 244 margin: 0 auto 30px; |
213 max-width: 960px; | 245 max-width: 960px; |
214 text-align: center; | 246 text-align: center; |
215 } | 247 } |
OLD | NEW |