2017-09-09 06:00:25 +02:00
|
|
|
.load-indicator {
|
2017-10-06 20:11:18 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2018-07-15 15:38:33 +02:00
|
|
|
z-index: 10000;
|
2018-07-17 11:34:32 +02:00
|
|
|
left: 46%;
|
2019-02-15 20:12:54 +01:00
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
filter: drop-shadow(3px 1px 2px #666666);
|
2017-09-09 06:00:25 +02:00
|
|
|
}
|
2018-07-17 11:34:32 +02:00
|
|
|
|
2019-02-15 20:12:54 +01:00
|
|
|
.opt-loader {
|
|
|
|
border: 3px solid #666666;
|
|
|
|
border-top: 3px solid #dadada;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
animation: spin 2s linear infinite, fade 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.opt-logo-core {
|
|
|
|
width: 85px;
|
|
|
|
height: 85px;
|
|
|
|
margin: 6px 8px;
|
|
|
|
stroke: #666666;
|
|
|
|
color: #dadada;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-30 17:29:58 +02:00
|
|
|
@media only screen and (min-width: 1200px) {
|
|
|
|
.load-indicator {
|
2019-02-15 20:12:54 +01:00
|
|
|
left: 46.1%;
|
2018-06-30 17:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1376px) {
|
|
|
|
.load-indicator {
|
2019-02-15 20:12:54 +01:00
|
|
|
left: 46.55%;
|
2018-06-30 17:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1600px) {
|
|
|
|
.load-indicator {
|
2019-02-15 20:12:54 +01:00
|
|
|
left: 47.45%;
|
2018-06-30 17:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1925px) {
|
|
|
|
.load-indicator {
|
2019-02-15 20:12:54 +01:00
|
|
|
left: 48.1%;
|
2018-06-30 17:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-15 20:12:54 +01:00
|
|
|
@keyframes fade {
|
|
|
|
0%, 100% { opacity: 0.5; }
|
|
|
|
50% { opacity: 1; }
|
2017-09-09 06:00:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
2019-02-15 20:12:54 +01:00
|
|
|
0% { transform: rotate(0deg) }
|
|
|
|
100% { transform: rotate(360deg) }
|
2017-09-09 06:00:25 +02:00
|
|
|
}
|