blob: a7b11d00c66b7f186c75e9a8e15b30c5cd17e71b (
plain)
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
|
/* Definitions */
:root {
--color-header: #333333;
}
/* Layout */
body {
margin: 0;
}
.g-Layout__Header {
background-color: var(--color-header);
color: white;
font-size: 2rem;
height: 3rem;
line-height: 3rem;
padding: 0 0.5rem;
}
/* Map */
.g-Map {
position: absolute;
top: 3rem;
bottom: 0;
left: 0;
right: 0;
}
#g-Map__Content {
width: 100%;
height: 100%;
cursor: pointer;
}
|