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 { | 5 html:not(.focus-outline-visible) :focus { |
6 outline: none; | 6 outline: none; |
7 } | 7 } |
8 | 8 |
9 body { | 9 body { |
10 overflow: hidden; | 10 overflow: hidden; |
11 padding-top: 20px; | 11 padding-top: 20px; |
12 } | 12 } |
13 | 13 |
14 html.changing-content body { | 14 html.changing-content body { |
15 -webkit-transition: -webkit-transform 100ms; | 15 transition: transform 100ms; |
16 } | 16 } |
17 | 17 |
18 h1 { | 18 h1 { |
19 -webkit-margin-start: 23px; | 19 -webkit-margin-start: 23px; |
20 color: rgb(92, 97, 102); | 20 color: rgb(92, 97, 102); |
21 margin-bottom: 1em; | 21 margin-bottom: 1em; |
22 /* This value must match the top padding of the uber page header. */ | 22 /* This value must match the top padding of the uber page header. */ |
23 margin-top: 21px; | 23 margin-top: 21px; |
24 } | 24 } |
25 | 25 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 padding: 0; | 61 padding: 0; |
62 } | 62 } |
63 | 63 |
64 .selected > button { | 64 .selected > button { |
65 color: rgb(70, 78, 90); | 65 color: rgb(70, 78, 90); |
66 } | 66 } |
67 | 67 |
68 html[guestMode='true'] .hide-in-guest { | 68 html[guestMode='true'] .hide-in-guest { |
69 display: none; | 69 display: none; |
70 } | 70 } |
OLD | NEW |