-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
65 lines (56 loc) · 1016 Bytes
/
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
65
/* 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 {
font-family: Roboto, 'Helvetica Neue', Arial, sans-serif;
height: 100%;
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
overflow: hidden;
}
/* My stuff */
a:hover {
cursor: pointer;
}
#infobox {
display: block;
background: #FFF;
color: #000;
padding: 15px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px;
position: fixed;
bottom: 24px;
right: 50px;
z-index: 10000;
visibility: hidden;
}
#infobox h2 {
margin: 0 0 5px;
font-size: 18px;
}
#infobox p {
margin: 0;
font-size: 12px;
}
#infobox p ul {
margin: 0;
padding-left: 15px;
}
.globe #infobox h2 {
text-transform: uppercase;
font-weight: 700;
}
.globe #infobox p {
font-size: 1em;
margin-bottom: 10px;
}
.globe #infobox a:hover {
background: #000;
color: #FFF;
}