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%;
|
|
|
|
filter: drop-shadow(3px 1px 2px #dadada);
|
2017-09-09 06:00:25 +02:00
|
|
|
}
|
2018-07-17 11:34:32 +02:00
|
|
|
|
2018-06-30 17:29:58 +02:00
|
|
|
@media only screen and (min-width: 1200px) {
|
|
|
|
.load-indicator {
|
2018-07-17 11:34:32 +02:00
|
|
|
left: 47.4%;
|
2018-06-30 17:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1376px) {
|
|
|
|
.load-indicator {
|
2018-07-17 11:34:32 +02:00
|
|
|
left: 48%;
|
2018-06-30 17:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1600px) {
|
|
|
|
.load-indicator {
|
2018-07-17 11:34:32 +02:00
|
|
|
left: 48.2%;
|
2018-06-30 17:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 1925px) {
|
|
|
|
.load-indicator {
|
2018-07-17 11:34:32 +02:00
|
|
|
left: 48.7%;
|
2018-06-30 17:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 06:00:25 +02:00
|
|
|
.load-arrow {
|
|
|
|
background: url(../../assets/loading.png) no-repeat;
|
|
|
|
display: block;
|
2018-07-17 11:34:32 +02:00
|
|
|
width: 70px;
|
|
|
|
height: 70px;
|
2017-09-09 06:00:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Loading Animation */
|
|
|
|
.glyphicon-refresh-animate {
|
|
|
|
animation: spin 1.5s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|