1 |
19963e5b
|
kohlicekjan
|
* {
|
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 |
49df590a
|
Jan Kohlíček
|
.searchWrapper {
|
29 |
0b27c108
|
Jan Kohlíček
|
min-height: calc(100% - 40px);
|
30 |
|
|
float: left;
|
31 |
19963e5b
|
kohlicekjan
|
}
|
32 |
|
|
|
33 |
d68f7bbd
|
Jan Kohlíček
|
#info {
|
34 |
19963e5b
|
kohlicekjan
|
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 |
49df590a
|
Jan Kohlíček
|
#info header address {
|
41 |
|
|
margin: 0;
|
42 |
|
|
}
|
43 |
|
|
|
44 |
19963e5b
|
kohlicekjan
|
#map {
|
45 |
|
|
padding: 0;
|
46 |
|
|
margin: 0;
|
47 |
|
|
overflow: hidden;
|
48 |
e4f78eb8
|
Jan Kohlíček
|
min-height: 100%;
|
49 |
19963e5b
|
kohlicekjan
|
}
|
50 |
|
|
|
51 |
0b27c108
|
Jan Kohlíček
|
/* 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 |
49df590a
|
Jan Kohlíček
|
0% {
|
64 |
|
|
transform: rotate(0deg);
|
65 |
|
|
}
|
66 |
|
|
100% {
|
67 |
|
|
transform: rotate(360deg);
|
68 |
|
|
}
|
69 |
0b27c108
|
Jan Kohlíček
|
}
|
70 |
|
|
|
71 |
49df590a
|
Jan Kohlíček
|
#loadingScreen {
|
72 |
0b27c108
|
Jan Kohlíček
|
width: 100%;
|
73 |
|
|
height: 100%;
|
74 |
|
|
z-index: 1000;
|
75 |
e4f78eb8
|
Jan Kohlíček
|
position: fixed;
|
76 |
0b27c108
|
Jan Kohlíček
|
top: 0;
|
77 |
|
|
left: 0;
|
78 |
|
|
right: 0;
|
79 |
|
|
bottom: 0;
|
80 |
|
|
background-color: #CFD8DC;
|
81 |
|
|
}
|
82 |
|
|
|
83 |
49df590a
|
Jan Kohlíček
|
#loadingScreen .loading {
|
84 |
e4f78eb8
|
Jan Kohlíček
|
border: 12px solid white;
|
85 |
|
|
border-top: 12px solid #007bff;
|
86 |
0b27c108
|
Jan Kohlíček
|
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 |
e4f78eb8
|
Jan Kohlíček
|
#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 |
0b27c108
|
Jan Kohlíček
|
|
111 |
49df590a
|
Jan Kohlíček
|
#loadingScreen #noscript {
|
112 |
e4f78eb8
|
Jan Kohlíček
|
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 |
0b27c108
|
Jan Kohlíček
|
|
125 |
49df590a
|
Jan Kohlíček
|
/*GRAPH */
|
126 |
|
|
#graphAverageSpeed, #graphAverageSpeed{
|
127 |
|
|
width: 100% !important;
|
128 |
|
|
max-height: 575px !important;
|
129 |
0b27c108
|
Jan Kohlíček
|
|
130 |
49df590a
|
Jan Kohlíček
|
}
|
131 |
|
|
|
132 |
|
|
/*SCROLLBAR*/
|
133 |
|
|
|
134 |
|
|
::-webkit-scrollbar-track {
|
135 |
|
|
background-color: whitesmoke;
|
136 |
|
|
}
|
137 |
0b27c108
|
Jan Kohlíček
|
|
138 |
49df590a
|
Jan Kohlíček
|
::-webkit-scrollbar {
|
139 |
|
|
width: 8px;
|
140 |
|
|
background-color: whitesmoke;
|
141 |
|
|
}
|
142 |
0b27c108
|
Jan Kohlíček
|
|
143 |
49df590a
|
Jan Kohlíček
|
::-webkit-scrollbar-thumb {
|
144 |
|
|
background-color: rgba(0, 123, 255, 0.75);
|
145 |
|
|
}
|
146 |
19963e5b
|
kohlicekjan
|
|
147 |
49df590a
|
Jan Kohlíček
|
/*BOOTSTRAP*/
|
148 |
|
|
.custom-checkbox .custom-control-label::before {
|
149 |
|
|
background-color: white;
|
150 |
|
|
}
|