| 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 body { | 5 body { |
| 6 -webkit-margin-start: 23px; | 6 -webkit-margin-start: 23px; |
| 7 color: rgb(48, 57, 66); | 7 color: rgb(48, 57, 66); |
| 8 } | 8 } |
| 9 | 9 |
| 10 body.uber-frame { | 10 body.uber-frame { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 body header { | 32 body header { |
| 33 background-image: -webkit-linear-gradient(white, | 33 background-image: -webkit-linear-gradient(white, |
| 34 white 40%, | 34 white 40%, |
| 35 rgba(255, 255, 255, 0.92)); | 35 rgba(255, 255, 255, 0.92)); |
| 36 left: 23px; | 36 left: 23px; |
| 37 /* <section>s in options currently amount to 638px total, broken up into | 37 /* <section>s in options currently amount to 638px total, broken up into |
| 38 * 600px max-width + 18px -webkit-padding-start + 20px -webkit-margin-end | 38 * 600px max-width + 18px -webkit-padding-start + 20px -webkit-margin-end |
| 39 * so we mirror this value here so the headers match width and horizontal | 39 * so we mirror this value here so the headers match width and horizontal |
| 40 * alignment when scrolling sideways. | 40 * alignment when scrolling sideways. |
| 41 * other-devices.css' .device width depends on this, please keep in sync. | 41 * other-devices.css' .device width depends on this, please keep in sync. */ |
| 42 */ | |
| 43 max-width: 738px; | 42 max-width: 738px; |
| 44 min-width: 600px; | 43 min-width: 600px; |
| 45 position: fixed; | 44 position: fixed; |
| 46 right: 0; | 45 right: 0; |
| 47 top: 0; | 46 top: 0; |
| 48 /* list.css sets a z-index of up to 2, this is set to 3 to ensure that the | 47 /* list.css sets a z-index of up to 2, this is set to 3 to ensure that the |
| 49 * header is in front of the selected list item. */ | 48 * header is in front of the selected list item. */ |
| 50 z-index: 3; | 49 z-index: 3; |
| 51 } | 50 } |
| 52 | 51 |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 background-size: 18px; | 179 background-size: 18px; |
| 181 display: block; | 180 display: block; |
| 182 padding-bottom: 8px; | 181 padding-bottom: 8px; |
| 183 padding-top: 8px; | 182 padding-top: 8px; |
| 184 } | 183 } |
| 185 | 184 |
| 186 .page-banner.clickable:active .page-banner-text { | 185 .page-banner.clickable:active .page-banner-text { |
| 187 background: -webkit-linear-gradient(rgb(250, 230, 145), | 186 background: -webkit-linear-gradient(rgb(250, 230, 145), |
| 188 rgb(255, 242, 183)); | 187 rgb(255, 242, 183)); |
| 189 } | 188 } |
| OLD | NEW |