-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (62 loc) · 1.26 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
65
66
67
68
69
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
:root {
--main-color: #003242;
--secondary-color: #ECECEC;
}
html, body {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
font-family: "Montserrat";
}
.header {
grid-area: header;
background-color: var(--main-color);
color: var(--secondary-color)
}
.sidebar {
grid-area: sidebar;
background-color: var(--secondary-color);
color: var(--main-color);
overflow: auto;
}
form {
display: block;
}
.filter-description {
font-size: 0.8rem;
}
#stats-container {
margin-top: 10px;
padding: 1px 30px;
background-color: var(--main-color);
box-shadow: -2px 0px 8px 0px #121212;
color: var(--secondary-color)
}
.map {
grid-area: map;
}
.wrapper {
display: grid;
grid-template-rows: 10% 25% auto;
grid-template-areas:
"header"
"sidebar"
"map";
width: 100vw;
height: 100vh;
}
.box {
padding: 10px;
font-size: 20px;
}
@media only screen and (min-width: 800px) {
.wrapper {
grid-template-columns: 40% auto;
grid-template-rows: 60px auto;
grid-template-areas:
"header header"
"sidebar map";
}
}