| Left: | ||
| Right: |
| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 99 margin: 0px auto; | 99 margin: 0px auto; |
| 100 margin-bottom: 20px; | 100 margin-bottom: 20px; |
| 101 } | 101 } |
| 102 | 102 |
| 103 #content | 103 #content |
| 104 { | 104 { |
| 105 margin: 0px auto; | 105 margin: 0px auto; |
| 106 max-width: 960px; | 106 max-width: 960px; |
| 107 } | 107 } |
| 108 | 108 |
| 109 section, .notification | 109 section, |
|
juliandoucette
2016/09/24 16:49:34
NIT:
Shouldn't this be on the next line?
saroyanm
2016/09/27 12:10:14
Done.
| |
| 110 .notification | |
| 110 { | 111 { |
| 111 padding: 20px 100px; | 112 padding: 20px 100px; |
| 112 margin-bottom: 30px; | 113 margin-bottom: 30px; |
| 113 } | 114 } |
| 114 | 115 |
| 115 .notification | 116 .notification |
| 116 { | 117 { |
| 117 margin: 0px; | 118 margin: 0px; |
| 118 text-align: center; | 119 text-align: center; |
| 119 } | 120 } |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 183 text-align: center; | 184 text-align: center; |
| 184 } | 185 } |
| 185 | 186 |
| 186 section .error-label | 187 section .error-label |
| 187 { | 188 { |
| 188 display: none; | 189 display: none; |
| 189 color: #ffafaf; | 190 color: #ffafaf; |
| 190 margin: 0px 12px; | 191 margin: 0px 12px; |
| 191 } | 192 } |
| 192 | 193 |
| 193 button, .notification a | 194 button, |
|
juliandoucette
2016/09/24 16:49:34
NIT:
Shouldn't this be on the next line?
saroyanm
2016/09/27 12:10:14
Done.
| |
| 195 .notification a | |
| 194 { | 196 { |
| 195 min-width: 138px; | 197 min-width: 138px; |
| 196 border: 0px; | 198 border: 0px; |
| 197 color: #ffffff; | 199 color: #ffffff; |
| 198 cursor: pointer; | 200 cursor: pointer; |
| 199 } | 201 } |
| 200 | 202 |
| 201 section.highlighted form button | 203 .highlighted form button |
|
juliandoucette
2016/09/24 16:49:34
NIT:
We don't need "section" here?
saroyanm
2016/09/27 12:10:14
Done.
| |
| 202 { | 204 { |
| 203 height: 42px; | 205 height: 42px; |
| 204 background-color: #37506d; | 206 background-color: #37506d; |
| 205 } | 207 } |
| 206 | 208 |
| 207 form.error button | 209 form.error button |
| 208 { | 210 { |
| 209 border: solid 2px #ffafaf; | 211 border: solid 2px #ffafaf; |
| 210 } | 212 } |
| 211 | 213 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 248 { | 250 { |
| 249 display: none; | 251 display: none; |
| 250 } | 252 } |
| 251 | 253 |
| 252 footer | 254 footer |
| 253 { | 255 { |
| 254 margin: 0 auto 30px; | 256 margin: 0 auto 30px; |
| 255 max-width: 960px; | 257 max-width: 960px; |
| 256 text-align: center; | 258 text-align: center; |
| 257 } | 259 } |
| LEFT | RIGHT |