opt-cc/static/src/app/statistic/war-submit/war-submit.component.css

30 lines
458 B
CSS
Raw Normal View History

2017-07-14 23:33:17 +02:00
.overview {
position: fixed;
width: 25%;
2017-07-15 10:02:52 +02:00
min-width: 300px;
2017-07-14 23:33:17 +02:00
padding-left: 50px;
padding-top: 70px;
margin-left: 10px;
}
.load-arrow {
background: url(../../../assets/loading.png) no-repeat;
2017-07-14 23:33:17 +02:00
display: block;
width: 120px;
height: 120px;
}
/* Loading Animation */
.glyphicon-refresh-animate {
animation: spin 1.5s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}