| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 357 |
| 358 /* nav-refresh */ |
| 359 /* TODO(cbernaschina) fix nav-refresh-wrapped to nav-refresh when wrapper |
| 360 removed */ |
| 361 |
| 362 nav-refresh-wrapped > li > button { |
| 363 color: #000; |
| 364 margin: 3px; |
| 365 padding: 8px; |
| 366 border-width: 2px; |
| 367 line-height: 13px; |
| 368 font: 400 13px 'Montserrat', sans-serif; |
| 369 } |
| 370 nav-refresh-wrapped > li > button[disabled] { |
| 371 color: #aaa; |
| 372 cursor: wait; |
| 373 } |
| 374 nav-refresh-wrapped > li { |
| 375 float: right; |
| 376 margin: 0; |
| 377 } |
| 378 |
| 358 /* view-footer */ | 379 /* view-footer */ |
| 359 | 380 |
| 360 view-footer { | 381 view-footer { |
| 361 padding: 1em; | 382 padding: 1em; |
| 362 padding-top: 10.3em; | 383 padding-top: 10.3em; |
| 363 float: right; | 384 float: right; |
| 364 align-content: right; | 385 align-content: right; |
| 365 } | 386 } |
| 366 | 387 |
| 367 view-footer > a { | 388 view-footer > a { |
| 368 margin-bottom: 0.17em; | 389 margin-bottom: 0.17em; |
| 369 font-size: 90%; | 390 font-size: 90%; |
| 370 float: right; | 391 float: right; |
| 371 clear: both; | 392 clear: both; |
| 372 display: block; | 393 display: block; |
| 373 } | 394 } |
| OLD | NEW |