-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathMap.module.css
More file actions
62 lines (52 loc) · 1014 Bytes
/
Map.module.css
File metadata and controls
62 lines (52 loc) · 1014 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
57
58
59
60
61
62
.contextMenu {
z-index: 3;
}
.mapContainer {
height: 100%;
width: 100%;
}
.customScale {
position: absolute;
bottom: 18px;
padding: 2px;
background: var(--ol-partial-background-color);
}
.customScale-inner {
border: 1px solid gray;
border-top: none;
font-size: 10px;
text-align: center;
margin: 1px;
}
.customZoom {
right: 17px;
top: 115px;
}
@media (max-width: 44rem) {
.customZoom {
top: unset;
bottom: 0.5em;
}
.customScale {
display: none;
}
}
/* changing the position of the attribution is a bit complex as we have to repeat the other css */
.customAttribution {
left: 0;
bottom: 0;
padding: 1px 5px;
background: var(--ol-partial-background-color);
border-radius: 0 4px 0 0;
}
.customAttribution ul {
font-size: 12px;
}
.customAttribution a {
padding-right: 3px;
color: rgba(0, 60, 136, 0.7);
text-decoration: none;
}
.customAttribution button {
display: none;
}