OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, | 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, |
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, | 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, |
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, | 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, |
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, | 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, |
10 tfoot, thead, tr, th, td, button { | 10 tfoot, thead, tr, th, td, button { |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 padding-top: 2px; | 430 padding-top: 2px; |
431 padding-bottom: 4px; | 431 padding-bottom: 4px; |
432 color: rgb(180, 180, 180); | 432 color: rgb(180, 180, 180); |
433 line-height: 27px; /* Same as line-height for buttons */ | 433 line-height: 27px; /* Same as line-height for buttons */ |
434 } | 434 } |
435 | 435 |
436 .waiting-container { | 436 .waiting-container { |
437 display: -webkit-box; | 437 display: -webkit-box; |
438 } | 438 } |
439 | 439 |
| 440 .prominent { |
| 441 color: #222; |
| 442 } |
| 443 |
440 .space-before { | 444 .space-before { |
441 margin-top: 30px; | 445 margin-top: 30px; |
442 } | 446 } |
443 | 447 |
444 | 448 |
445 #access-code-countdown-container { | 449 #access-code-countdown-container { |
446 height: 50px; | 450 height: 50px; |
447 text-align: center; | 451 text-align: center; |
448 } | 452 } |
449 | 453 |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 box-sizing: border-box; | 548 box-sizing: border-box; |
545 } | 549 } |
546 | 550 |
547 /* | 551 /* |
548 * Setting hidden on elements that match some rule overriding 'display' doesn't | 552 * Setting hidden on elements that match some rule overriding 'display' doesn't |
549 * do what you would expect unless this is made explicit (and !important). | 553 * do what you would expect unless this is made explicit (and !important). |
550 */ | 554 */ |
551 [hidden] { | 555 [hidden] { |
552 display: none !important; | 556 display: none !important; |
553 } | 557 } |
OLD | NEW |