Improve load indicator positioning (CC-87)
parent
8304dc1a0e
commit
15787fa299
|
@ -1,10 +1,10 @@
|
|||
.load-indicator {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
z-index: 10000;
|
||||
left: 46%;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
position: absolute;
|
||||
top: calc(50% - 50px);
|
||||
left: calc(50% - 50px);
|
||||
z-index: 10000;
|
||||
filter: drop-shadow(3px 1px 2px #666666);
|
||||
}
|
||||
|
||||
|
@ -27,28 +27,6 @@
|
|||
color: #dadada;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-width: 1200px) {
|
||||
.load-indicator {
|
||||
left: 46.1%;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1376px) {
|
||||
.load-indicator {
|
||||
left: 46.55%;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1600px) {
|
||||
.load-indicator {
|
||||
left: 47.45%;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1925px) {
|
||||
.load-indicator {
|
||||
left: 48.1%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade {
|
||||
0%, 100% { opacity: 0.5; }
|
||||
50% { opacity: 1; }
|
||||
|
|
Loading…
Reference in New Issue