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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 display: none; | 278 display: none; |
279 } | 279 } |
280 #feedbackContainer { | 280 #feedbackContainer { |
281 display: none; | 281 display: none; |
282 } | 282 } |
283 | 283 |
284 /* Remove backgrounds and custom colors. */ | 284 /* Remove backgrounds and custom colors. */ |
285 .light, .dark, .sepia { | 285 .light, .dark, .sepia { |
286 color: #000 !important; | 286 color: #000 !important; |
287 background-color: #fff !important; | 287 background-color: #fff !important; |
| 288 font-family: sans-serif !important; |
288 } | 289 } |
289 | 290 |
290 /* If the transition duration is unchanged, the above color changes | 291 /* If the transition duration is unchanged, the above color changes |
291 happen after the document is ready for print. */ | 292 happen after the document is ready for print. */ |
292 body { | 293 body { |
293 transition-duration: unset !important; | 294 transition-duration: unset !important; |
294 } | 295 } |
295 } | 296 } |
296 | 297 |
297 #content { | 298 #content { |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 } | 489 } |
489 | 490 |
490 .youtubeIframe { | 491 .youtubeIframe { |
491 height: 100%; | 492 height: 100%; |
492 left: 0px; | 493 left: 0px; |
493 position: absolute; | 494 position: absolute; |
494 top: 0px; | 495 top: 0px; |
495 width: 100%; | 496 width: 100%; |
496 } | 497 } |
497 | 498 |
OLD | NEW |