| 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 box-sizing: border-box; | 6 box-sizing: border-box; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body { | 9 body { |
| 10 color: rgb(48, 57, 66); | 10 color: rgb(48, 57, 66); |
| 11 font-size: 13px; | 11 font-size: 13px; |
| 12 margin: 0; | 12 margin: 0; |
| 13 min-width: 47em; | 13 min-width: 47em; |
| 14 overflow: hidden; |
| 14 } | 15 } |
| 15 | 16 |
| 16 .hidden { | 17 .hidden { |
| 17 display: none !important; | 18 display: none !important; |
| 18 } | 19 } |
| 19 | 20 |
| 20 img { | 21 img { |
| 21 flex-shrink: 0; | 22 flex-shrink: 0; |
| 22 height: 16px; | 23 height: 16px; |
| 23 padding-left: 2px; | 24 padding-left: 2px; |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 @media (min-width: 47em) { | 440 @media (min-width: 47em) { |
| 440 #container { | 441 #container { |
| 441 max-height: 100vh; | 442 max-height: 100vh; |
| 442 } | 443 } |
| 443 #navigation, | 444 #navigation, |
| 444 #content { | 445 #content { |
| 445 max-height: 100vh; | 446 max-height: 100vh; |
| 446 overflow: auto; | 447 overflow: auto; |
| 447 } | 448 } |
| 448 } | 449 } |
| OLD | NEW |