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 |
| 6 body { |
| 7 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; |
| 8 font-size: 75%; |
| 9 padding: 1em; |
| 10 } |
| 11 |
| 12 body header > h1 { |
| 13 margin: 0; |
| 14 padding: 21px 0 13px; |
| 15 } |
| 16 |
| 17 /* 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). */ |
| 19 body header > h1::after { |
| 20 -webkit-margin-end: 20px; |
| 21 background-color: #eee; |
| 22 content: ''; |
| 23 display: block; |
| 24 height: 1px; |
| 25 position: relative; |
| 26 top: 13px; |
| 27 } |
OLD | NEW |