-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
80 lines (68 loc) · 1.32 KB
/
index.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
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
font-size: 16px;
}
#map {
height: 100%;
width: 100%;
image-rendering: pixelated;
}
.mouseposition {
background-color: white;
padding: 3px;
text-align: right;
}
.mousepositioncoord {
min-width: 40px;
display: inline-block;
}
div.ol-mouse-position {
background-color: white;
padding: 6px;
border-radius: 3px;
box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.ol-ctx-menu-container {
font-size: 16px;
}
.ol-scale-step-text {
font-family: sans-serif;
font-weight: bold;
font-size: 14px;
color: white;
text-shadow:
1px 0 0 black,
0 1px 0 black,
-1px 0 0 black,
0 -1px 0 black;
0px 0px 8px black;
}
.ol-scale-singlebar-odd {
background: #ddd;
}
.ol-scale-singlebar-even {
background: #444;
}
.toastify {
color: black;
background: yellow;
}
.ol-ctx-menu-container li {
padding-left: 20px;
}
.menuitem-checked::before {
content: '☑';
width: 20px;
display: inline-block;
margin-left: -20px;
}
.menuitem-unchecked::before {
content: '☐';
width: 20px;
display: inline-block;
margin-left: -20px;
}