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