| OLD | NEW |
| 1 /* Global styles */ | 1 /* Global styles */ |
| 2 * { | 2 * { |
| 3 margin: 0; | 3 margin: 0; |
| 4 padding: 0; | 4 padding: 0; |
| 5 font: 400 14px 'Montserrat', sans-serif; | 5 font: 400 14px 'Montserrat', sans-serif; |
| 6 color: #333; | 6 color: #333; |
| 7 box-sizing: border-box; | 7 box-sizing: border-box; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .content { | 10 .content { |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 -webkit-transform: translate3d(10px, 0, 0); | 347 -webkit-transform: translate3d(10px, 0, 0); |
| 348 -ms-transform: translate3d(10px, 0, 0); | 348 -ms-transform: translate3d(10px, 0, 0); |
| 349 transform: translate3d(10px, 0, 0); | 349 transform: translate3d(10px, 0, 0); |
| 350 } | 350 } |
| 351 } | 351 } |
| 352 | 352 |
| 353 .shake { | 353 .shake { |
| 354 animation: shake 0.5s; | 354 animation: shake 0.5s; |
| 355 -webkit-animation: shake 0.5s; | 355 -webkit-animation: shake 0.5s; |
| 356 } | 356 } |
| 357 |
| 358 /* view-footer */ |
| 359 |
| 360 view-footer { |
| 361 padding: 1em; |
| 362 padding-top: 10.3em; |
| 363 float: right; |
| 364 align-content: right; |
| 365 } |
| 366 |
| 367 view-footer > a { |
| 368 margin-bottom: 0.17em; |
| 369 font-size: 90%; |
| 370 float: right; |
| 371 clear: both; |
| 372 display: block; |
| 373 } |
| OLD | NEW |