blob: 9710bd750064363b7efe5d00279fa8963349a427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
body {
background-color: white;
color: black;
margin: 10px;
}
.header {
clear: both;
overflow: auto;
}
.header .logo {
float: left;
}
html[dir='rtl'] .logo {
float: right;
}
.header .form {
-webkit-margin-start: 12px;
float: left;
margin-top: 22px;
}
html[dir='rtl'] .form {
float: right;
}
.page-navigation {
-webkit-margin-end: 4px;
background-color: #ebeff9;
padding: 8px;
}
.footer {
height: 24px;
}
/* TODO(jhawkins): Refactor button styling and remove !important here. This is
* currently necessary because individual page button element selectors have
* higher specificity.
*/
.link-button,
.link-button:active,
.link-button:focus,
.link-button:hover {
-webkit-box-shadow: none !important;
background: transparent none !important;
border: none !important;
color: blue;
cursor: pointer;
text-decoration: underline;
}
|