1
/* Google Maps */
2
.em-location-map-container img.em-location-static-map {
3
width: 100%;
4
height: 100%;
5
max-width: 100% !important;
6
}
7
8
.em-location-map-container.em-map-static-load {
9
position: relative;
10
}
11
12
.em-location-map-container.em-map-static-load:hover {
13
cursor: pointer;
14
}
15
16
.em-location-map-container .em-map-overlay {
17
display: block;
18
position: absolute;
19
top: 0;
20
bottom: 0;
21
left: 0;
22
right: 0;
23
height: 100%;
24
width: 100%;
25
opacity: 0;
26
transition: 0.5s ease;
27
background-color: #333;
28
cursor: pointer;
29
}
30
31
.em-location-map-container:hover .em-map-overlay {
32
opacity: 0.75;
33
}
34
35
.em-location-map-container .em-map-overlay div {
36
color: white;
37
font-size: 18px;
38
position: absolute;
39
top: 50%;
40
left: 50%;
...
</html>