Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
|
Dan Beam
2015/11/24 20:08:20
/* Copyright 2015 The Chromium Authors. All rights
edwardjung
2015/11/24 21:42:12
Done.
| |
| 6 | |
| 7 body { | |
| 8 font-family: Arial, sans-serif; | |
|
Dan Beam
2015/11/24 20:08:20
should this be the same font as other webui pages
edwardjung
2015/11/24 21:42:12
Good point. Switched to use Roboto.
| |
| 9 font-size: 12px; | |
| 10 margin: 10px; | |
| 11 padding-bottom: 65px; | |
| 12 } | |
| 13 | |
| 14 ul { | |
| 15 line-height: 1.7em; | |
| 16 padding-left: 15px; | |
| 17 } | |
| 18 | |
| 19 a { | |
| 20 word-break: break-word; | |
| 21 } | |
| OLD | NEW |