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 /* This value must match the top padding of the uber page header. */ | 12 /* This value must match the top padding of the uber page header. */ |
13 -webkit-margin-before: 21px; | 13 -webkit-margin-before: 21px; |
14 -webkit-margin-start: 23px; | 14 -webkit-margin-start: 23px; |
15 color: rgb(92, 97, 102); | 15 color: rgb(92, 97, 102); |
16 } | 16 } |
17 | 17 |
18 ul { | 18 ul { |
19 list-style-type: none; | 19 list-style-type: none; |
20 padding: 0; | 20 padding: 0; |
21 } | 21 } |
22 | 22 |
23 li { | 23 li { |
24 -webkit-border-start: 6px solid transparent; | 24 -webkit-border-start: 6px solid transparent; |
25 -webkit-padding-start: 18px; | 25 -webkit-padding-start: 18px; |
26 color: #999; | 26 color: #999; |
27 cursor: pointer; | 27 cursor: pointer; |
28 line-height: 17px; | 28 line-height: 17px; |
29 margin: 5px 0; | 29 margin: 5px 0; |
30 text-transform: uppercase; | |
31 } | 30 } |
32 | 31 |
33 li:hover { | 32 li:hover { |
34 color: #777; | 33 color: #777; |
35 } | 34 } |
36 | 35 |
37 li.selected { | 36 li.selected { |
38 -webkit-border-start-color: rgb(78, 87, 100); | 37 -webkit-border-start-color: rgb(78, 87, 100); |
39 color: rgb(70, 78, 90); | 38 color: rgb(70, 78, 90); |
40 } | 39 } |
41 | 40 |
42 #helpNavItem { | 41 #helpNavItem { |
43 margin-top: 27px; | 42 margin-top: 27px; |
44 } | 43 } |
OLD | NEW |