-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.css
112 lines (93 loc) · 1.78 KB
/
map.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
:root {
--marker-size: 8px;
--marker-font-size: 8px;
--marker-border-width: 2px;
--marker-border-colour: #444444;
--marker-background: #eeeeee;
--marker-completed-background: #ffa300;
--marker-completed-border-colour: #444444;
}
#map_container {
position: fixed;
top: 0px;
left: 0px;
width: 100vw;
height: 100vh;
}
#pane_toggle {
width: 250px;
padding: 10px;
}
#map {
width: 100%;
height: 100%;
}
.marker {
background: var(--marker-background);
min-width: var(--marker-size);
min-height: var(--marker-size);
font-size: var(--marker-font-size);
border-radius: 50%;
border: var(--marker-border-width) solid var(--marker-border-colour);
text-align: center;
vertical-align: middle;
display: table;
}
.marker.completed {
background: var(--marker-completed-background);
border-color: var(--marker-completed-border-colour);
}
.section:not(:last-child) {
margin-bottom: 10px;
}
p.heading {
margin: 0px;
text-align: center;
}
.log, .build_info {
font-family: "Courier New";
word-wrap: anywhere;
}
.collapsible::before {
content: "▾";
display: inline-block;
width: 10px;
}
.collapsible.collapsed::before {
content: "▸";
display: inline-block;
width: 10px;
}
.collapsible.collapsed + div {
height: 0px;
overflow: hidden;
}
.technical_info_val {
padding-left: 10px;
}
.logitem {
padding: 2px;
margin-left: 10px;
border-left: 1px solid lightgrey;
border-right: 1px solid lightgrey;
border-top: 1px solid lightgrey;
}
.logitem:first-child {
border-radius: 5px 5px 0px 0px;
}
.logitem:last-child {
border-bottom: 1px solid lightgrey;
border-radius: 0px 0px 5px 5px;
}
.logitem:first-child:last-child {
border-radius: 5px;
}
.logitem.message {
background-color: none;
}
.logitem.warning {
background-color: #ffee90;
}
.logitem.error {
background-color: #ff9090;
}