1
|
@import './variables';
|
2
|
|
3
|
* {
|
4
|
margin: 0;
|
5
|
padding: 0;
|
6
|
}
|
7
|
|
8
|
html,
|
9
|
body {
|
10
|
width: 100%;
|
11
|
height: 100%;
|
12
|
min-height: 100% !important;
|
13
|
margin: 0;
|
14
|
padding: 0;
|
15
|
}
|
16
|
|
17
|
#search {
|
18
|
z-index: 20;
|
19
|
float: left;
|
20
|
min-height: 100%;
|
21
|
max-height: 100%;
|
22
|
overflow: auto;
|
23
|
background-color: $primary-background-color;
|
24
|
box-shadow: 0 0 10px 0 rgba(50, 50, 50, 0.75);
|
25
|
|
26
|
header h1 {
|
27
|
font-weight: bold;
|
28
|
font-size: 1rem;
|
29
|
line-height: 1rem;
|
30
|
}
|
31
|
|
32
|
footer {
|
33
|
float: left;
|
34
|
}
|
35
|
}
|
36
|
|
37
|
.searchWrapper {
|
38
|
float: left;
|
39
|
min-height: calc(100% - 40px);
|
40
|
|
41
|
.custom-control-label::before {
|
42
|
background-color: white;
|
43
|
}
|
44
|
}
|
45
|
|
46
|
#info {
|
47
|
z-index: 10;
|
48
|
min-height: 100%;
|
49
|
max-height: 100%;
|
50
|
overflow: auto;
|
51
|
box-shadow: 0 0 10px 0 rgba(50, 50, 50, 0.75);
|
52
|
|
53
|
header address {
|
54
|
margin: 0;
|
55
|
}
|
56
|
|
57
|
.source-link {
|
58
|
color: $color-black;
|
59
|
text-decoration: underline;
|
60
|
|
61
|
&:hover {
|
62
|
text-decoration: none;
|
63
|
}
|
64
|
}
|
65
|
}
|
66
|
|
67
|
@media (max-width: 991.98px) {
|
68
|
#info,
|
69
|
#search {
|
70
|
height: auto;
|
71
|
min-height: auto;
|
72
|
max-height: none;
|
73
|
overflow: hidden;
|
74
|
box-shadow: none;
|
75
|
}
|
76
|
}
|
77
|
|
78
|
#map {
|
79
|
min-height: 100%;
|
80
|
max-height: 100%;
|
81
|
margin: 0;
|
82
|
padding: 0;
|
83
|
overflow: hidden;
|
84
|
}
|
85
|
|
86
|
/* LOADING */
|
87
|
.loading {
|
88
|
width: 50px;
|
89
|
height: 50px;
|
90
|
margin: 0 auto;
|
91
|
border: 6px solid $loading-second-color;
|
92
|
border-top: 6px solid $loading-first-color;
|
93
|
border-radius: 50%;
|
94
|
animation: spin 2s linear infinite;
|
95
|
}
|
96
|
|
97
|
@keyframes spin {
|
98
|
0% {
|
99
|
transform: rotate(0deg);
|
100
|
}
|
101
|
|
102
|
100% {
|
103
|
transform: rotate(360deg);
|
104
|
}
|
105
|
}
|
106
|
|
107
|
#loadingScreen {
|
108
|
position: fixed;
|
109
|
top: 0;
|
110
|
right: 0;
|
111
|
bottom: 0;
|
112
|
left: 0;
|
113
|
z-index: 1000;
|
114
|
width: 100%;
|
115
|
height: 100%;
|
116
|
background-color: $primary-background-color;
|
117
|
|
118
|
.loading {
|
119
|
position: fixed;
|
120
|
top: 0;
|
121
|
right: 0;
|
122
|
bottom: 0;
|
123
|
left: 0;
|
124
|
width: 100px;
|
125
|
height: 100px;
|
126
|
margin: auto auto;
|
127
|
border: 12px solid $loading-second-color;
|
128
|
border-top: 12px solid $loading-first-color;
|
129
|
border-radius: 50%;
|
130
|
animation: spin 2s linear infinite;
|
131
|
}
|
132
|
|
133
|
#logo {
|
134
|
position: fixed;
|
135
|
top: -160px;
|
136
|
right: 0;
|
137
|
bottom: 0;
|
138
|
left: 0;
|
139
|
width: 100%;
|
140
|
height: 50px;
|
141
|
margin: auto 0;
|
142
|
font-size: 1.4rem;
|
143
|
text-align: center;
|
144
|
}
|
145
|
|
146
|
#noscript {
|
147
|
position: fixed;
|
148
|
top: 0;
|
149
|
right: 0;
|
150
|
bottom: 0;
|
151
|
left: 0;
|
152
|
width: 100%;
|
153
|
height: 110px;
|
154
|
margin: auto 0;
|
155
|
font-size: 1rem;
|
156
|
text-align: center;
|
157
|
background-color: $primary-background-color;
|
158
|
}
|
159
|
}
|
160
|
|
161
|
/* GRAPH */
|
162
|
|
163
|
.graph-size {
|
164
|
width: 100%;
|
165
|
}
|
166
|
|
167
|
/* SCROLLBAR */
|
168
|
|
169
|
::-webkit-scrollbar-track {
|
170
|
background-color: $scrollbar-background-color;
|
171
|
}
|
172
|
|
173
|
::-webkit-scrollbar {
|
174
|
width: 8px;
|
175
|
background-color: $scrollbar-background-color;
|
176
|
}
|
177
|
|
178
|
::-webkit-scrollbar-thumb {
|
179
|
background-color: rgba($scrollbar-color, 0.75);
|
180
|
}
|
181
|
|