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 overflow: hidden; | 6 overflow: hidden; |
7 padding-top: 20px; | 7 padding-top: 20px; |
8 } | 8 } |
9 | 9 |
10 h1 { | 10 h1 { |
11 -webkit-margin-after: 1em; | 11 -webkit-margin-after: 1em; |
12 -webkit-margin-before: 1.2em; | 12 /* This value must match the top padding of the uber page header. */ |
| 13 -webkit-margin-before: 21px; |
13 -webkit-margin-start: 23px; | 14 -webkit-margin-start: 23px; |
14 color: rgb(92, 97, 102); | 15 color: rgb(92, 97, 102); |
15 } | 16 } |
16 | 17 |
17 ul { | 18 ul { |
18 list-style-type: none; | 19 list-style-type: none; |
19 padding: 0; | 20 padding: 0; |
20 } | 21 } |
21 | 22 |
22 li { | 23 li { |
(...skipping 11 matching lines...) Expand all Loading... |
34 } | 35 } |
35 | 36 |
36 li.selected { | 37 li.selected { |
37 -webkit-border-start-color: rgb(78, 87, 100); | 38 -webkit-border-start-color: rgb(78, 87, 100); |
38 color: rgb(70, 78, 90); | 39 color: rgb(70, 78, 90); |
39 } | 40 } |
40 | 41 |
41 #helpNavItem { | 42 #helpNavItem { |
42 margin-top: 27px; | 43 margin-top: 27px; |
43 } | 44 } |
OLD | NEW |