blob: 4ba9d35424b7b6cd4d7046edd4a3ddd2403f80a0 (
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
79
|
/* Copyright (c) 2012 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: 'Noto Sans UI', 'Droid Sans Fallback', sans-serif;
font-size: 12px;
}
button {
background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7);
border: 1px solid rgba(0, 0, 0, 0.25);
border-radius: 2px;
color: #444;
float: right;
margin-top: 15px;
min-height: 2em;
min-width: 7em;
padding-left: 10px;
padding-right: 10px;
}
.buttons-pane {
width: 90%;
}
form {
width: 610px;
}
h2 {
border-bottom: 1px solid #eee;
color: rgb(48, 57, 66);
font-size: 1.3em;
font-weight: normal;
}
input {
border: solid 1px rgb(170, 207, 228);
margin: 2px 0 8px 10px;
padding: 4px 2px;
text-align: right;
width: 110px;
}
.row {
display: table-row;
}
.row-input {
display: table-cell;
}
.row-label {
color: black;
display: table-cell;
font-size: 16px;
font-weight: normal;
padding-top: 4px;
text-align: right;
width: 370px;
}
.row-units {
display: table-cell;
padding-left: 7px;
padding-top: 7px;
text-align: left;
width: 100px;
}
.section-properties {
display: table;
}
#section-row-template,
#section-template {
display: none;
}
|