-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (65 loc) · 1.03 KB
/
style.css
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
p {
margin: 8px 0;
}
h2 {
margin-top: 0;
}
label {
display: inline-block;
font-style: italic;
}
svg g * {
transform-box: fill-box;
transform-origin: center;
}
.group {
display: inline-block;
vertical-align: top;
margin: 10px;
}
.control_row {
margin: 8px 0;
vertical-align: middle;
}
.control_label {
width: 190px;
}
#landmark_update_help {
display: none;
width: 300px;
margin-left: 195px;
margin-top: 5px;
}
.move_button {
width: 36px;
height: 36px;
font-family: "system-ui", "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
}
.matrix {
/* https://stackoverflow.com/a/11561235 */
display: inline-block;
position: relative;
vertical-align: middle;
padding: 1px 2px;
margin: 5px 0px;
}
.matrix:before, .matrix:after {
content: "";
position: absolute;
top: 1px;
border: 1px solid #000;
width: 6px;
bottom: 1px;
}
.matrix:before {
left: 0px;
border-right: 0px;
}
.matrix:after {
right: 0px;
border-left: 0px;
}
.matrix td {
padding: 3px 5px;
text-align: center;
}