LEFT | RIGHT |
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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 } | 184 } |
185 | 185 |
186 form.error .error-label | 186 form.error .error-label |
187 { | 187 { |
188 display: inline-block; | 188 display: inline-block; |
189 } | 189 } |
190 | 190 |
191 form input[type="checkbox"] | 191 form input[type="checkbox"] |
192 { | 192 { |
193 margin: 0px; | 193 margin: 0px; |
194 } | 194 -webkit-margin-end: 10px; |
195 | 195 -moz-margin-end: 10px; |
196 form input[type="checkbox"] + span | |
197 { | |
198 margin: 0px 10px; | |
199 } | 196 } |
200 | 197 |
201 .disclaimer | 198 .disclaimer |
202 { | 199 { |
203 margin: 14px 0px; | 200 margin: 14px 0px; |
204 font-size: 14px; | 201 font-size: 14px; |
205 color: #a9bdd5; | 202 color: #a9bdd5; |
206 } | 203 } |
207 | 204 |
208 .hidden | 205 .hidden |
209 { | 206 { |
210 display: none; | 207 display: none; |
211 } | 208 } |
212 | 209 |
213 footer | 210 footer |
214 { | 211 { |
215 margin: 0 auto 30px; | 212 margin: 0 auto 30px; |
216 max-width: 960px; | 213 max-width: 960px; |
217 text-align: center; | 214 text-align: center; |
218 } | 215 } |
LEFT | RIGHT |