blob: f1415349347481cfc935d1dd0e5d7e7eae936810 (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
* Copyright (c) 2013 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 {
font-family: Arial, sans-serif;
font-size: 12px;
margin: 10px 20px;
min-width: 47em;
padding-bottom: 65px;
}
img {
float: left;
height: 16px;
padding-right: 5px;
width: 16px;
}
.row {
border-bottom: 1px solid #A0A0A0;
padding: 5px;
}
.url {
color: #696969;
}
p {
line-height: 1.2em;
}
.columns {
display: flex;
}
.column {
flex-basis: 50%;
}
.checkbox-row {
align-items: center;
display: flex;
}
.checkbox-wrapper {
flex-grow: 0;
margin: 0 0 2px 0;
padding: 0;
width: 32px;
}
.secondary {
color: #696969;
margin: 0 0 12px 32px;
}
a {
margin-top: 10px;
margin-bottom: 10px;
margin-left: 20px;
}
label {
flex-grow: 1;
margin: 0 0 2px 0;
padding: 0;
}
label.disabled {
color: #696969;
}
label input[type='checkbox'] {
margin-right: 6px;
}
|