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 |
|
|
|
23 |
|
|
#search header h1 {
|
24 |
|
|
line-height: 1rem;
|
25 |
|
|
font-size: 1rem;
|
26 |
|
|
font-weight: bold;
|
27 |
|
|
}
|
28 |
|
|
|
29 |
0b27c108
|
Jan Kohlíček
|
.searchWrapper{
|
30 |
|
|
min-height: calc(100% - 40px);
|
31 |
|
|
float: left;
|
32 |
19963e5b
|
kohlicekjan
|
}
|
33 |
|
|
|
34 |
|
|
#graph {
|
35 |
|
|
min-height: 100%;
|
36 |
|
|
box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
|
37 |
|
|
z-index: 10;
|
38 |
|
|
overflow: auto;
|
39 |
|
|
}
|
40 |
|
|
|
41 |
|
|
#map {
|
42 |
|
|
padding: 0;
|
43 |
|
|
margin: 0;
|
44 |
|
|
overflow: hidden;
|
45 |
|
|
}
|
46 |
|
|
|
47 |
|
|
|
48 |
0b27c108
|
Jan Kohlíček
|
/* LOADING */
|
49 |
|
|
.loading {
|
50 |
|
|
border: 6px solid white; /* Light grey */
|
51 |
|
|
border-top: 6px solid #007bff; /* Blue */
|
52 |
|
|
border-radius: 50%;
|
53 |
|
|
width: 50px;
|
54 |
|
|
height: 50px;
|
55 |
|
|
animation: spin 2s linear infinite;
|
56 |
|
|
margin: 0 auto;
|
57 |
|
|
}
|
58 |
|
|
|
59 |
|
|
@keyframes spin {
|
60 |
|
|
0% { transform: rotate(0deg); }
|
61 |
|
|
100% { transform: rotate(360deg); }
|
62 |
|
|
}
|
63 |
|
|
|
64 |
|
|
|
65 |
|
|
#loadingScreen{
|
66 |
|
|
position: fixed;
|
67 |
|
|
width: 100%;
|
68 |
|
|
height: 100%;
|
69 |
|
|
z-index: 1000;
|
70 |
|
|
top: 0;
|
71 |
|
|
left: 0;
|
72 |
|
|
right: 0;
|
73 |
|
|
bottom: 0;
|
74 |
|
|
background-color: #CFD8DC;
|
75 |
|
|
}
|
76 |
|
|
|
77 |
|
|
#loadingScreen .loading{
|
78 |
|
|
border: 12px solid white; /* Light grey */
|
79 |
|
|
border-top: 12px solid #007bff; /* Blue */
|
80 |
|
|
border-radius: 50%;
|
81 |
|
|
width: 100px;
|
82 |
|
|
height: 100px;
|
83 |
|
|
animation: spin 2s linear infinite;
|
84 |
|
|
margin: auto auto;
|
85 |
|
|
position: fixed;
|
86 |
|
|
top: 0;
|
87 |
|
|
bottom: 0;
|
88 |
|
|
left: 0;
|
89 |
|
|
right: 0;
|
90 |
|
|
}
|
91 |
|
|
|
92 |
|
|
|
93 |
|
|
|
94 |
|
|
|
95 |
|
|
|
96 |
|
|
|
97 |
|
|
|
98 |
|
|
|