| 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 16 matching lines...) Expand all Loading... |
| 27 } | 27 } |
| 28 | 28 |
| 29 #container { | 29 #container { |
| 30 -webkit-flex-direction: row; | 30 -webkit-flex-direction: row; |
| 31 display: -webkit-flex; | 31 display: -webkit-flex; |
| 32 } | 32 } |
| 33 | 33 |
| 34 #infobar { | 34 #infobar { |
| 35 background: rgb(255, 212, 0); | 35 background: rgb(255, 212, 0); |
| 36 height: 20px; | 36 height: 20px; |
| 37 left: 0; |
| 37 line-height: 20px; | 38 line-height: 20px; |
| 39 position: fixed; |
| 40 right: 0; |
| 38 text-align: center; | 41 text-align: center; |
| 39 visibility: hidden; | 42 visibility: hidden; |
| 43 z-index: 1; |
| 40 } | 44 } |
| 41 | 45 |
| 42 #infobar.show { | 46 #infobar.show { |
| 43 visibility: visible; | 47 visibility: visible; |
| 44 } | 48 } |
| 45 | 49 |
| 46 #navigation { | 50 #navigation { |
| 47 padding-top: 20px; | 51 padding-top: 20px; |
| 48 width: 150px; | 52 width: 150px; |
| 49 } | 53 } |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 @media (min-width: 47em) { | 435 @media (min-width: 47em) { |
| 432 #container { | 436 #container { |
| 433 max-height: 100vh; | 437 max-height: 100vh; |
| 434 } | 438 } |
| 435 #navigation, | 439 #navigation, |
| 436 #content { | 440 #content { |
| 437 max-height: 100vh; | 441 max-height: 100vh; |
| 438 overflow: auto; | 442 overflow: auto; |
| 439 } | 443 } |
| 440 } | 444 } |
| OLD | NEW |