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
|
|
23
|
#search header h1 {
|
24
|
line-height: 1rem;
|
25
|
font-size: 1rem;
|
26
|
font-weight: bold;
|
27
|
}
|
28
|
|
29
|
.searchWrapper{
|
30
|
min-height: calc(100% - 40px);
|
31
|
float: left;
|
32
|
}
|
33
|
|
34
|
#info {
|
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
|
min-height: 100%;
|
46
|
}
|
47
|
|
48
|
|
49
|
/* LOADING */
|
50
|
.loading {
|
51
|
border: 6px solid white; /* Light grey */
|
52
|
border-top: 6px solid #007bff; /* Blue */
|
53
|
border-radius: 50%;
|
54
|
width: 50px;
|
55
|
height: 50px;
|
56
|
animation: spin 2s linear infinite;
|
57
|
margin: 0 auto;
|
58
|
}
|
59
|
|
60
|
@keyframes spin {
|
61
|
0% { transform: rotate(0deg); }
|
62
|
100% { transform: rotate(360deg); }
|
63
|
}
|
64
|
|
65
|
|
66
|
#loadingScreen{
|
67
|
width: 100%;
|
68
|
height: 100%;
|
69
|
z-index: 1000;
|
70
|
position: fixed;
|
71
|
top: 0;
|
72
|
left: 0;
|
73
|
right: 0;
|
74
|
bottom: 0;
|
75
|
background-color: #CFD8DC;
|
76
|
}
|
77
|
|
78
|
#loadingScreen .loading{
|
79
|
border: 12px solid white;
|
80
|
border-top: 12px solid #007bff;
|
81
|
border-radius: 50%;
|
82
|
width: 100px;
|
83
|
height: 100px;
|
84
|
animation: spin 2s linear infinite;
|
85
|
margin: auto auto;
|
86
|
position: fixed;
|
87
|
top: 0;
|
88
|
bottom: 0;
|
89
|
left: 0;
|
90
|
right: 0;
|
91
|
}
|
92
|
|
93
|
#loadingScreen #logo {
|
94
|
width: 100%;
|
95
|
height: 50px;
|
96
|
position: fixed;
|
97
|
top: -160px;
|
98
|
bottom: 0;
|
99
|
left: 0;
|
100
|
right: 0;
|
101
|
margin: auto 0;
|
102
|
text-align: center;
|
103
|
font-size: 1.4rem;
|
104
|
}
|
105
|
|
106
|
#loadingScreen #pvpk_noscript{
|
107
|
width: 100%;
|
108
|
height: 110px;
|
109
|
position: fixed;
|
110
|
top: 0;
|
111
|
bottom: 0;
|
112
|
left: 0;
|
113
|
right: 0;
|
114
|
margin: auto 0;
|
115
|
text-align: center;
|
116
|
font-size: 1rem;
|
117
|
background-color: #CFD8DC;
|
118
|
}
|
119
|
|
120
|
|
121
|
|
122
|
|
123
|
|