blob: 31d869f1fc9999a4b450ec431b22ee1bfde97367 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
body {
overflow: hidden;
padding-top: 20px;
}
h1 {
-webkit-margin-before: 18px;
-webkit-margin-start: 23px;
color: rgb(92, 97, 102);
}
ul {
list-style-type: none;
padding: 0;
}
li {
-webkit-border-start: 6px solid white;
-webkit-padding-start: 18px;
color: #999;
cursor: pointer;
line-height: 17px;
margin: 5px 0;
text-transform: uppercase;
}
li:hover {
color: #777;
}
li.selected {
-webkit-border-start-color: rgb(78, 87, 100);
color: rgb(70, 78, 90);
}
#helpNavItem {
margin-top: 27px;
}
|