-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmap.css
67 lines (58 loc) · 1.11 KB
/
map.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
#map {
width: 100%;
height: 100%;
position: absolute;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.info_window_image {
float: left;
margin: 0 15px 15px 0;
}
h2.info_window_heading {
color: #9BC8D4;
}
.info_window_body {
color: #4F8053;
}
.controlStyle {
background-color: #FFFFFF;
border: 2px solid #FFFFFF;
border-radius: 3px;
box-shadow: 0 2px 6px rgba(0,0,0,.3);
color: rgb(25,25,25);
cursor: pointer;
font-family: Roboto, Arial, sans-serif;
font-size: 16px;
line-height: 38px;
height: 40px;
margin: 8px 0 22px;
padding: 0 5px;
text-align: center;
}
.controlStyle:hover {
background-color: #EBEBEB;
border: 2px solid #EBEBEB;
transition: 0.4s;
}
.controlStyle:focus {
outline-color: transparent;
outline-style: solid;
box-shadow: 0 0 0 4px #5A01A7;
}
/* Municipality icons */
.municipalityContainer {
position: relative;
text-align: center;
color: black;
font-size: 15px;
}
.municipalityLabel {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}