OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 * This file contains CSS shared by history and downloads. NOTE: These pages are | 5 * This file contains CSS shared by history and downloads. NOTE: These pages are |
6 * overdue for a revamp so it's more or less deprecated to use or edit this | 6 * overdue for a revamp so it's more or less deprecated to use or edit this |
7 * file, or copy its contents. | 7 * file, or copy its contents. |
8 */ | 8 */ |
9 | 9 |
10 body { | 10 body { |
11 background-color: white; | |
12 color: black; | |
13 margin: 10px 10px 34px 10px; | 11 margin: 10px 10px 34px 10px; |
14 } | 12 } |
15 | 13 |
16 .header { | 14 .header { |
17 clear: both; | 15 clear: both; |
18 overflow: auto; | 16 overflow: auto; |
19 } | 17 } |
20 | 18 |
21 .header .logo { | 19 .header .logo { |
22 float: left; | 20 float: left; |
23 } | 21 } |
24 | 22 |
25 html[dir='rtl'] .logo, | 23 html[dir='rtl'] .logo, |
26 html[dir='rtl'] .form { | 24 html[dir='rtl'] .form { |
27 float: right; | 25 float: right; |
28 } | 26 } |
29 | 27 |
30 .header .form { | 28 .header .form { |
31 -webkit-margin-start: 12px; | 29 -webkit-margin-start: 12px; |
32 float: left; | 30 float: left; |
33 margin-top: 22px; | 31 margin-top: 22px; |
34 } | 32 } |
35 | |
36 .page-navigation { | |
37 -webkit-margin-end: 4px; | |
38 background-color: #ebeff9; | |
39 padding: 8px; | |
40 } | |
OLD | NEW |