-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
106 lines (91 loc) · 1.9 KB
/
styles.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
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
font-family: 'Roboto', sans-serif;
color: #333;
background-color: #f8f9fa;
min-height: 100vh;
display: flex;
flex-direction: column;
}
#map {
height: 500px;
border: 1px solid #dee2e6;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.legend {
font-size: 14px;
background: white;
padding: 10px;
border: 1px solid #dee2e6;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.legend .gradient {
height: 20px;
width: 200px;
background: linear-gradient(to right, #fff, #ffa500);
}
.card-header {
background-color: #343a40;
color: #fff;
font-weight: bold;
}
.card-body svg {
margin-bottom: 10px;
}
.tooltip {
position: absolute;
z-index: 10;
background-color: white;
border: 1px solid #dee2e6;
padding: 5px;
pointer-events: none;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.form-label {
font-weight: 500;
}
.pie-chart-container {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.pie-chart {
border: 1px solid #dee2e6;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
padding: 20px;
}
.pie-chart-legend {
margin-left: 20px;
border: 1px solid #dee2e6;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
padding: 20px;
}
#map-container {
height: 700px;
overflow: hidden;
border: 1px solid #dee2e6;
border-radius: 5px;
background-color: #f8f9fa;
}
.plots-container {
max-height: 700px;
overflow-y: auto;
border: 1px solid #dee2e6;
border-radius: 5px;
padding: 10px;
background-color: #e9ecef;
}
.row {
position: relative;
}
.row:before {
content: "";
position: absolute;
top: 0;
left: 50%;
width: 3px;
height: 100%;
background-color: #e9ecef;
}
footer {
margin-top: auto;
}