opt-cc/static/src/app/style/load-indicator.css

57 lines
947 B
CSS
Raw Normal View History

2017-09-09 06:00:25 +02:00
.load-indicator {
2017-10-06 20:11:18 +02:00
position: absolute;
top: 50%;
z-index: 1;
2017-09-09 06:00:25 +02:00
}
@media only screen and (max-width: 1199px) {
.load-indicator {
left: 46%;
}
}
@media only screen and (min-width: 1200px) {
.load-indicator {
left: 46%;
}
}
@media only screen and (min-width: 1376px) {
.load-indicator {
left: 46.5%;
}
}
@media only screen and (min-width: 1600px) {
.load-indicator {
left: 47.5%;
}
}
@media only screen and (min-width: 1925px) {
.load-indicator {
left: 48%;
}
}
:host /deep/ .mat-progress-spinner circle, .mat-spinner circle {
2018-07-05 21:04:43 +02:00
stroke: #303030 !important;
stroke-linecap: round;
}
2017-09-09 06:00:25 +02:00
.load-arrow {
background: url(../../assets/loading.png) no-repeat;
display: block;
width: 80px;
height: 80px;
}
/* Loading Animation */
.glyphicon-refresh-animate {
animation: spin 1.5s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}