-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (97 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
113 lines (97 loc) · 1.55 KB
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
113
html, body {
margin: 0px;
overflow-x: hidden;
}
#settings {
position: fixed;
top: 16px;
left: 16px;
width: 250px;
border-radius: 12px;
background-color: #0f0f0fad;
border: 2px solid #ffffff3b;
color: white;
font-family: Quicksand;
}
#centered-container {
text-align: center;
}
#map {
height: 175px;
}
#map-container {
padding: 10px;
}
input {
padding: 5px;
border-radius: 5px;
text-align: center;
}
label {
padding: 5px;
display: block;
}
button {
padding: 5px;
margin: 5px;
cursor: pointer;
background: white;
border: 3px solid white;
box-sizing: border-box;
border-radius: 4px;
color: #000;
}
button:hover {
border: 3px solid #c3c1c1;
}
button[disabled] {
background-color: #c3c1c1;
cursor: not-allowed;
border: 3px solid transparent;
}
button[disabled]:hover {
border: 3px solid transparent;
}
.settings-link {
color: white;
padding: 10px;
}
.log {
padding: 5px;
overflow-y: auto;
max-height: 100px;
display: none;
word-wrap: break-word;
text-wrap: balance;
}
#sse {
width: 70px;
}
#instructions {
display: none;
font-family: Quicksand;
position: fixed;
top: 50%;
left: 50%;
color: white;
background-color: rgba(0, 0, 0, 0.7);
padding: 10px;
border-radius: 10px;
transform: translate(-50%, -50%);
max-width: 350px;
}
#instructions a {
color: white;
}
#instructions li {
margin-bottom: 4px;
}
#fetch-tiles-instruction-text {
color: black;
background-color: white;
border-radius: 4px;
padding: 3px;
}
#debug-slider-container {
display: none;
}