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 | 5 |
6 body { | 6 body { |
7 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; | 7 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; |
8 font-size: 75%; | 8 font-size: 75%; |
9 padding: 1em; | 9 padding: 0; |
10 } | 10 } |
11 | 11 |
12 body header > h1 { | 12 .navigation h1 { |
| 13 margin: 0; |
| 14 padding: 21px 23px 13px; |
| 15 } |
| 16 |
| 17 .navigation ul { |
| 18 list-style-type: none; |
| 19 padding: 0; |
| 20 } |
| 21 |
| 22 .navigation ul > li { |
| 23 -webkit-border-start: 6px solid transparent; |
| 24 -webkit-padding-start: 18px; |
| 25 -webkit-user-select: none; |
| 26 line-height: 29px; |
| 27 } |
| 28 |
| 29 .navigation ul > li.selected { |
| 30 -webkit-border-start-color: rgb(78, 87, 100); |
| 31 cursor: default; |
| 32 pointer-events: none; |
| 33 } |
| 34 |
| 35 .page { |
| 36 color: rgb(48, 57, 66); |
| 37 left: 155px; |
| 38 max-width: 738px; |
| 39 min-width: 600px; |
| 40 position: fixed; |
| 41 right: 0; |
| 42 top: 0; |
| 43 z-index: 3; |
| 44 } |
| 45 |
| 46 .page header > h1 { |
13 margin: 0; | 47 margin: 0; |
14 padding: 21px 0 13px; | 48 padding: 21px 0 13px; |
15 } | 49 } |
16 | 50 |
17 /* Create a border under the h1 (but before anything that gets appended | 51 /* Create a border under the h1 (but before anything that gets appended |
18 * to the end of the header, such as the managed prefs banner). */ | 52 * to the end of the header, such as the managed prefs banner). */ |
19 body header > h1::after { | 53 .page header > h1::after { |
20 -webkit-margin-end: 20px; | 54 -webkit-margin-end: 20px; |
21 background-color: #eee; | 55 background-color: #eee; |
22 content: ''; | 56 content: ''; |
23 display: block; | 57 display: block; |
24 height: 1px; | 58 height: 1px; |
25 position: relative; | 59 position: relative; |
26 top: 13px; | 60 top: 13px; |
27 } | 61 } |
OLD | NEW |