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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 text-decoration: underline; | 49 text-decoration: underline; |
50 } | 50 } |
51 | 51 |
52 a:hover | 52 a:hover |
53 { | 53 { |
54 text-decoration: none; | 54 text-decoration: none; |
55 } | 55 } |
56 | 56 |
57 header h1 | 57 header h1 |
58 { | 58 { |
59 -webkit-box-sizing: border-box; | |
60 -moz-box-sizing: border-box; | |
61 box-sizing: border-box; | 59 box-sizing: border-box; |
62 border: dashed 1px #898989; | 60 border: dashed 1px #898989; |
63 border-left: none; | 61 border-left: none; |
64 border-right: none; | 62 border-right: none; |
65 padding: 18px; | 63 padding: 18px; |
66 margin: 68px auto 20px auto; | 64 margin: 68px auto 20px auto; |
67 max-width: 960px; | 65 max-width: 960px; |
68 font-weight: 300; | 66 font-weight: 300; |
69 font-size: 24px; | 67 font-size: 24px; |
70 color: #7d7d7d; | 68 color: #7d7d7d; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 } | 184 } |
187 | 185 |
188 form.error .error-label | 186 form.error .error-label |
189 { | 187 { |
190 display: inline-block; | 188 display: inline-block; |
191 } | 189 } |
192 | 190 |
193 form input[type="checkbox"] | 191 form input[type="checkbox"] |
194 { | 192 { |
195 margin: 0px; | 193 margin: 0px; |
196 } | 194 -webkit-margin-end: 10px; |
197 | 195 -moz-margin-end: 10px; |
198 form input[type="checkbox"] + span | |
199 { | |
200 margin: 0px 10px; | |
201 } | 196 } |
202 | 197 |
203 .disclaimer | 198 .disclaimer |
204 { | 199 { |
205 margin: 14px 0px; | 200 margin: 14px 0px; |
206 font-size: 14px; | 201 font-size: 14px; |
207 color: #a9bdd5; | 202 color: #a9bdd5; |
208 } | 203 } |
209 | 204 |
210 .hidden | 205 .hidden |
211 { | 206 { |
212 display: none; | 207 display: none; |
213 } | 208 } |
214 | 209 |
215 footer | 210 footer |
216 { | 211 { |
217 margin: 0 auto 30px; | 212 margin: 0 auto 30px; |
218 max-width: 960px; | 213 max-width: 960px; |
219 text-align: center; | 214 text-align: center; |
220 } | 215 } |
LEFT | RIGHT |