OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 /* Set the global 'box-sizing' state to 'border-box'. | 5 /* Set the global 'box-sizing' state to 'border-box'. |
6 * *::after and *::before used to select pseudo-elements not selectable by *. */ | 6 * *::after and *::before used to select pseudo-elements not selectable by *. */ |
7 | 7 |
8 *, | 8 *, |
9 *::after, | 9 *::after, |
10 *::before { | 10 *::before { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 68 |
69 td, | 69 td, |
70 th { | 70 th { |
71 padding: 0; | 71 padding: 0; |
72 } | 72 } |
73 | 73 |
74 /* Base typography. */ | 74 /* Base typography. */ |
75 | 75 |
76 html { | 76 html { |
77 font-size: 14px; | 77 font-size: 14px; |
| 78 height: 100%; |
78 } | 79 } |
79 | 80 |
80 body { | 81 body { |
81 height: 100%; | 82 height: 100%; |
82 line-height: 1.4; | 83 line-height: 1.4; |
83 text-rendering: optimizeLegibility; | 84 text-rendering: optimizeLegibility; |
84 transition-property: color, background-color; | 85 transition-property: color, background-color; |
85 transition-duration: 0.5s; | 86 transition-duration: 0.5s; |
86 transition-timing-function: ease; | 87 transition-timing-function: ease; |
87 overflow-x: hidden; | 88 overflow-x: hidden; |
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 border-color: rgb(250,36,36); | 813 border-color: rgb(250,36,36); |
813 } | 814 } |
814 | 815 |
815 #loader.red .circle.red .mask.first .mover { | 816 #loader.red .circle.red .mask.first .mover { |
816 background-color: rgb(33,89,189); | 817 background-color: rgb(33,89,189); |
817 } | 818 } |
818 | 819 |
819 #loader.red .circle.red .mask.second .mover { | 820 #loader.red .circle.red .mask.second .mover { |
820 background-color: rgb(250,36,36); | 821 background-color: rgb(250,36,36); |
821 } | 822 } |
OLD | NEW |