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 html:not(.focus-outline-visible) :focus { |
| 6 outline: none; |
| 7 } |
| 8 |
5 body { | 9 body { |
6 overflow: hidden; | 10 overflow: hidden; |
7 padding-top: 20px; | 11 padding-top: 20px; |
8 } | 12 } |
9 | 13 |
10 html.changing-content body { | 14 html.changing-content body { |
11 -webkit-transition: -webkit-transform 100ms; | 15 -webkit-transition: -webkit-transform 100ms; |
12 } | 16 } |
13 | 17 |
14 h1 { | 18 h1 { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 cursor: pointer; | 57 cursor: pointer; |
54 font: inherit; | 58 font: inherit; |
55 line-height: 1.417em; /* 17px based on default 12px font size. */ | 59 line-height: 1.417em; /* 17px based on default 12px font size. */ |
56 margin: 6px 0; | 60 margin: 6px 0; |
57 padding: 0; | 61 padding: 0; |
58 } | 62 } |
59 | 63 |
60 .selected > button { | 64 .selected > button { |
61 color: rgb(70, 78, 90); | 65 color: rgb(70, 78, 90); |
62 } | 66 } |
OLD | NEW |