OLD | NEW |
| (Empty) |
1 /* Copyright (c) 2011 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 background-color: white; | |
8 color: black; | |
9 margin: 10px; | |
10 } | |
11 | |
12 .header { | |
13 clear: both; | |
14 overflow: auto; | |
15 } | |
16 | |
17 .header .logo { | |
18 float: left; | |
19 } | |
20 | |
21 html[dir='rtl'] .logo { | |
22 float: right; | |
23 } | |
24 | |
25 .header .form { | |
26 -webkit-margin-start: 12px; | |
27 float: left; | |
28 margin-top: 22px; | |
29 } | |
30 | |
31 html[dir='rtl'] .form { | |
32 float: right; | |
33 } | |
34 | |
35 .page-navigation { | |
36 -webkit-margin-end: 4px; | |
37 background-color: #ebeff9; | |
38 padding: 8px; | |
39 } | |
40 | |
41 .footer { | |
42 height: 24px; | |
43 } | |
44 | |
45 /* TODO(jhawkins): Refactor button styling and remove !important here. This is | |
46 * currently necessary because individual page button element selectors have | |
47 * higher specificity. | |
48 */ | |
49 .link-button, | |
50 .link-button:focus, | |
51 .link-button:hover { | |
52 -webkit-box-shadow: none !important; | |
53 background: transparent none !important; | |
54 border: none !important; | |
55 cursor: pointer; | |
56 text-decoration: underline; | |
57 } | |
58 | |
59 .displaytable { | |
60 display: table; | |
61 } | |
OLD | NEW |