| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 line-height: 14px; | 167 line-height: 14px; |
| 168 margin-top: 24px; | 168 margin-top: 24px; |
| 169 padding: 24px 16px; | 169 padding: 24px 16px; |
| 170 font-size: 14px; | 170 font-size: 14px; |
| 171 text-align: right; | 171 text-align: right; |
| 172 text-decoration: none; | 172 text-decoration: none; |
| 173 text-transform: uppercase; | 173 text-transform: uppercase; |
| 174 width: 100%; | 174 width: 100%; |
| 175 } | 175 } |
| 176 | 176 |
| 177 @media print { |
| 178 #closeReaderView { |
| 179 display: none; |
| 180 } |
| 181 } |
| 182 |
| 177 #content { | 183 #content { |
| 178 margin: 0.2rem 2.2%; | 184 margin: 0.2rem 2.2%; |
| 179 } | 185 } |
| 180 | 186 |
| 181 #mainContent { | 187 #mainContent { |
| 182 flex: 1 1 auto; | 188 flex: 1 1 auto; |
| 183 margin: 0px auto; | 189 margin: 0px auto; |
| 184 max-width: 800px; | 190 max-width: 800px; |
| 185 width: 100%; | 191 width: 100%; |
| 186 } | 192 } |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 border-color: rgb(250,36,36); | 834 border-color: rgb(250,36,36); |
| 829 } | 835 } |
| 830 | 836 |
| 831 #loader.red .circle.red .mask.first .mover { | 837 #loader.red .circle.red .mask.first .mover { |
| 832 background-color: rgb(33,89,189); | 838 background-color: rgb(33,89,189); |
| 833 } | 839 } |
| 834 | 840 |
| 835 #loader.red .circle.red .mask.second .mover { | 841 #loader.red .circle.red .mask.second .mover { |
| 836 background-color: rgb(250,36,36); | 842 background-color: rgb(250,36,36); |
| 837 } | 843 } |
| OLD | NEW |