-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
64 lines (63 loc) · 1.08 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
/* Always set the map height explicitly to define the size of the div */
/* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
.marker-info {
font-size: 1.25em;
}
.marker-info::after {
content: "";
display: block;
clear: both;
}
.marker-info img {
max-width: 200px;
max-height: 200px;
object-fit: contain;
display: block;
float: left;
margin-right: 1em;
margin-bottom: 1em;
}
.marker-info h1 {
text-align: right;
}
.marker-info table {
border-collapse: collapse;
}
/***
.marker-info tr {
border-bottom: 1px solid #aaa;
}
.marker-info tr:last-child {
border: none;
}
***/
.marker-info tr:nth-child(even) {
background-color: #F2F3F4;
}
.marker-info td {
padding-top: .5em;
padding-bottom: .5em;
}
.marker-info td:first-child {
font-weight: bold;
}
.marker-info td:nth-child(2) {
font-weight: bold;
width: 1em;
}
/* Cluster text container */
div.cluster > div > span {
font-size: 1.25em;
color: #fff;
text-shadow: .1em .1em .2em #000;
}