OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 body { |
| 6 overflow: hidden; |
| 7 } |
| 8 |
| 9 h1 { |
| 10 -webkit-margin-start: 23px; |
| 11 color: rgb(92, 97, 102); |
| 12 } |
| 13 |
| 14 ol { |
| 15 list-style-type: none; |
| 16 padding: 0; |
| 17 } |
| 18 |
| 19 li { |
| 20 -webkit-border-start: 6px solid white; |
| 21 -webkit-padding-start: 18px; |
| 22 color: #999; |
| 23 cursor: pointer; |
| 24 line-height: 17px; |
| 25 margin: 5px 0; |
| 26 text-transform: uppercase; |
| 27 } |
| 28 |
| 29 li:hover { |
| 30 color: #777; |
| 31 } |
| 32 |
| 33 li.selected { |
| 34 -webkit-border-start-color: rgb(78, 87, 100); |
| 35 color: rgb(70, 78, 90); |
| 36 } |
| 37 |
| 38 #aboutPageNavItem { |
| 39 margin-top: 27px; |
| 40 } |
OLD | NEW |