| 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); |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 } | 423 } |
| 424 | 424 |
| 425 @media (max-width: 47em) { | 425 @media (max-width: 47em) { |
| 426 #navigation, | 426 #navigation, |
| 427 #content { | 427 #content { |
| 428 overflow: visible; | 428 overflow: visible; |
| 429 } | 429 } |
| 430 } | 430 } |
| 431 @media (min-width: 47em) { | 431 @media (min-width: 47em) { |
| 432 #container { | 432 #container { |
| 433 height: 100vh; | 433 max-height: 100vh; |
| 434 } | 434 } |
| 435 #navigation, | 435 #navigation, |
| 436 #content { | 436 #content { |
| 437 height: 100vh; | 437 max-height: 100vh; |
| 438 overflow: auto; | 438 overflow: auto; |
| 439 } | 439 } |
| 440 } | 440 } |
| OLD | NEW |