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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 font-weight: 700; | 248 font-weight: 700; |
249 line-height: 14px; | 249 line-height: 14px; |
250 padding: 24px 16px; | 250 padding: 24px 16px; |
251 font-size: 14px; | 251 font-size: 14px; |
252 text-align: right; | 252 text-align: right; |
253 text-decoration: none; | 253 text-decoration: none; |
254 text-transform: uppercase; | 254 text-transform: uppercase; |
255 width: 100%; | 255 width: 100%; |
256 } | 256 } |
257 | 257 |
| 258 @media print { |
| 259 #closeReaderView { |
| 260 display: none; |
| 261 } |
| 262 } |
| 263 |
258 #content { | 264 #content { |
259 margin: 24px 16px 24px 16px; | 265 margin: 24px 16px 24px 16px; |
260 } | 266 } |
261 | 267 |
262 #mainContent { | 268 #mainContent { |
263 flex: 1 1 auto; | 269 flex: 1 1 auto; |
264 margin: 0px auto; | 270 margin: 0px auto; |
265 max-width: 35em; | 271 max-width: 35em; |
266 width: 100%; | 272 width: 100%; |
267 } | 273 } |
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 border-color: rgb(250,36,36); | 860 border-color: rgb(250,36,36); |
855 } | 861 } |
856 | 862 |
857 #loader.red .circle.red .mask.first .mover { | 863 #loader.red .circle.red .mask.first .mover { |
858 background-color: rgb(33,89,189); | 864 background-color: rgb(33,89,189); |
859 } | 865 } |
860 | 866 |
861 #loader.red .circle.red .mask.second .mover { | 867 #loader.red .circle.red .mask.second .mover { |
862 background-color: rgb(250,36,36); | 868 background-color: rgb(250,36,36); |
863 } | 869 } |
OLD | NEW |