| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 html { | 6 html { |
| 7 font-family: segoe ui, arial, helvetica, sans-serif; | 7 font-family: segoe ui, arial, helvetica, sans-serif; |
| 8 font-size: 14px; | 8 font-size: 14px; |
| 9 /* It's necessary to put this here instead of in body in order to get the | 9 /* It's necessary to put this here instead of in body in order to get the |
| 10 background-size of 100% to work properly */ | 10 background-size of 100% to work properly */ |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 /* Page switcher buttons. *****************************************************/ | 184 /* Page switcher buttons. *****************************************************/ |
| 185 | 185 |
| 186 .page-switcher { | 186 .page-switcher { |
| 187 background-color: transparent; | 187 background-color: transparent; |
| 188 border: none; | 188 border: none; |
| 189 font-size: 40px; | 189 font-size: 40px; |
| 190 height: 100%; | 190 height: 100%; |
| 191 padding: 0; | 191 padding: 0; |
| 192 position: absolute; | 192 position: absolute; |
| 193 max-width: 130px; | 193 max-width: 150px; |
| 194 min-width: 26px; | 194 min-width: 90px; |
| 195 opacity: 0.3; | 195 opacity: 0.3; |
| 196 top: 0; | 196 top: 0; |
| 197 z-index: 5; | 197 z-index: 5; |
| 198 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 198 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
| 199 } | 199 } |
| 200 | 200 |
| 201 .page-switcher:hover { | 201 .page-switcher:hover { |
| 202 background-color: rgba(0, 0, 0, 0.2); | 202 background-color: rgba(0, 0, 0, 0.2); |
| 203 } | 203 } |
| OLD | NEW |