-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (50 loc) · 735 Bytes
/
style.css
File metadata and controls
56 lines (50 loc) · 735 Bytes
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
body {
padding: 0;
margin: 0;
font-family: "Roboto", "Open Sans", Arial, sans-serif;
}
#map {
width: 100vw;
height: 100vh;
}
#selector,
#github-link {
position: absolute;
z-index: 1000;
background-color: #fff;
padding: 5px;
border-radius: 10px;
}
#github-link {
bottom: 4px;
left: 4px;
}
#github-link a {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 4px;
text-decoration: none;
color: black;
}
#selector {
top: 10px;
left: 10px;
max-width: 80%;
}
h1 {
font-size: 1.2rem;
margin: 8px 0 8px 0;
}
.popup h2 {
margin-bottom: 8px;
}
.popup p {
margin: 4px 0 4px 0;
}
#selector-dropdown.invisible {
display: none;
}
.flip {
transform: rotate(180deg);
}