-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (76 loc) · 1.63 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Roboto:wght@300&display=swap');
.title {
text-align: center;
font-family: 'Roboto', sans-serif;
}
.select-title {
font-family: 'Roboto', sans-serif;
}
.paragraph {
text-align: justify;
margin: 1em 25px;
font-family: 'Montserrat', sans-serif;
}
html, body {
height: 100%;
/* background-image: linear-gradient(moccasin, white); */
background-color: moccasin;
}
body {
display: flex;
flex-direction: column;
}
.content {
display: flex;
flex: 1 0 auto;
padding: 20px;
column-count: 2;
}
.footer {
text-align: center;
flex-shrink: 0;
padding: 30px;
font-family: 'Montserrat', sans-serif;
}
.github-user {
text-decoration: none;
}
.title-chart-container {
width: 70%;
margin: 10px 50px 50px 50px;
}
.line-chart-container {
border-radius: 1%;
border-color: rgb(51, 51, 51);
border-style: solid;
background-color: whitesmoke;
}
.map-container {
width: 300px;
height: 600px;
border-radius: 1%;
border-color: rgb(51, 51, 51);
border-style: solid;
background-color: lightgray;
margin: 10px 50px 50px 50px;
}
.selector {
margin: 0px 10px 20px 0px;
font-family: 'Montserrat', sans-serif;
}
button {
border-radius: 2em;
font-family: 'Montserrat', sans-serif;
border-style: solid;
background-color: lightskyblue;
border-color: black;
cursor: pointer;
box-shadow: 0px 3px #999;
}
button:active {
box-shadow: 0px 0px #666;
transform: translateY(1px);
}
text {
font-family: 'Montserrat', sans-serif;
}