Projekt

Obecné

Profil

Stáhnout (2.72 KB) Statistiky
| Větev: | Revize:
1
@import 'utils/variables';
2
@import "vendors/bootstrap";
3

    
4
* {
5
  margin: 0;
6
  padding: 0;
7
}
8

    
9
html,
10
body {
11
  width: 100%;
12
  height: 100%;
13
  min-height: 100% !important;
14
  margin: 0;
15
  padding: 0;
16
}
17

    
18
#search {
19
  z-index: 20;
20
  float: left;
21
  min-height: 100%;
22
  max-height: 100%;
23
  overflow: auto;
24
  background-color: $primary-background-color;
25
  box-shadow: 0 0 10px 0 rgba(50, 50, 50, 0.75);
26

    
27
  header h1 {
28
    font-weight: bold;
29
    font-size: 1rem;
30
    line-height: 1rem;
31
  }
32

    
33
  footer {
34
    float: left;
35
  }
36
}
37

    
38
.searchWrapper {
39
  float: left;
40
  min-height: calc(100% - 40px);
41

    
42
  .custom-control-label::before {
43
    background-color: white;
44
  }
45
}
46

    
47
#info {
48
  z-index: 10;
49
  min-height: 100%;
50
  max-height: 100%;
51
  overflow: auto;
52
  box-shadow: 0 0 10px 0 rgba(50, 50, 50, 0.75);
53

    
54
  header address {
55
    margin: 0;
56
  }
57

    
58
  .source-link {
59
    color: $color-black;
60
    text-decoration: underline;
61

    
62
    &:hover {
63
      text-decoration: none;
64
    }
65
  }
66
}
67

    
68
@media (max-width: 991.98px) {
69
  #info,
70
  #search {
71
    height: auto;
72
    min-height: auto;
73
    max-height: none;
74
    overflow: hidden;
75
    box-shadow: none;
76
  }
77
}
78

    
79
#map {
80
  min-height: 100%;
81
  max-height: 100%;
82
  margin: 0;
83
  padding: 0;
84
  overflow: hidden;
85
}
86

    
87
/* LOADING */
88
.loading {
89
  width: 50px;
90
  height: 50px;
91
  margin: 0 auto;
92
  border: 6px solid $loading-second-color;
93
  border-top: 6px solid $loading-first-color;
94
  border-radius: 50%;
95
  animation: spin 2s linear infinite;
96
}
97

    
98
@keyframes spin {
99
  0% {
100
    transform: rotate(0deg);
101
  }
102

    
103
  100% {
104
    transform: rotate(360deg);
105
  }
106
}
107

    
108
#loadingScreen {
109
  position: fixed;
110
  top: 0;
111
  right: 0;
112
  bottom: 0;
113
  left: 0;
114
  z-index: 1000;
115
  width: 100%;
116
  height: 100%;
117
  background-color: $primary-background-color;
118

    
119
  .loading {
120
    position: fixed;
121
    top: 0;
122
    right: 0;
123
    bottom: 0;
124
    left: 0;
125
    width: 100px;
126
    height: 100px;
127
    margin: auto auto;
128
    border: 12px solid $loading-second-color;
129
    border-top: 12px solid $loading-first-color;
130
    border-radius: 50%;
131
    animation: spin 2s linear infinite;
132
  }
133

    
134
  #logo {
135
    position: fixed;
136
    top: -160px;
137
    right: 0;
138
    bottom: 0;
139
    left: 0;
140
    width: 100%;
141
    height: 50px;
142
    margin: auto 0;
143
    font-size: 1.4rem;
144
    text-align: center;
145
  }
146

    
147
  #noscript {
148
    position: fixed;
149
    top: 0;
150
    right: 0;
151
    bottom: 0;
152
    left: 0;
153
    width: 100%;
154
    height: 110px;
155
    margin: auto 0;
156
    font-size: 1rem;
157
    text-align: center;
158
    background-color: $primary-background-color;
159
  }
160
}
161

    
162
/* GRAPH */
163

    
164
.graph-size {
165
  width: 100%;
166
}
167

    
168
/* SCROLLBAR */
169

    
170
::-webkit-scrollbar-track {
171
  background-color: $scrollbar-background-color;
172
}
173

    
174
::-webkit-scrollbar {
175
  width: 8px;
176
  background-color: $scrollbar-background-color;
177
}
178

    
179
::-webkit-scrollbar-thumb {
180
  background-color: rgba($scrollbar-color, 0.75);
181
}
182

    
    (1-1/1)