-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (56 loc) · 1.27 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
@font-face {
font-family: 'mapskin';
src: url('https://mapskincdn.appspot.com/1.0/fonts/mapskin.woff') format('woff'), url('https://mapskincdn.appspot.com/1.0/fonts/mapskin.ttf') format('truetype'), url('https://mapskincdn.appspot.com/1.0/fonts/mapskin.svg') format('svg');
font-weight: normal;
font-style: normal;
}
#mapa {
height: 100%;
}
#basemaps, #layers {
position: absolute;
top: auto;
bottom: 5.5rem;
width: calc(min(20rem, 50vw));
left: calc(50vw - calc(min(20rem, 50vw) / 2));
background-color: black;
border-radius: 0.3rem;
}
#basemaps h2, #layers h2 {
display: none;
}
#toggles {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
z-index: 10100;
display: flex;
gap: 1rem;
}
#toggles button {
border: none;
background-color: transparent;
color: #999999;
text-shadow: black 0.1rem 0.1rem;
font-size: 3rem;
bottom: 2rem;
z-index: 10100;
width: 3rem;
height: 3rem;
}
#basemaps-toggle:before {
font-family: mapskin;
content: "\e071";
}
#layers-toggle:before {
font-family: mapskin;
content: "\e072";
}
#search-button:before {
font-family: mapskin;
content: "\e003";
}
.tc-map .tc-ctl.lo-hidden {
display: none;
}