generator-steroids
Version:
A Yeoman generator for Steroids
25 lines (23 loc) • 541 B
CSS
@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
.spinner {
width: 36px;
height: 36px;
background-image: url("../../vendor/topcoat/img/spinner2x.png");
background-size: 36px;
background-repeat: no-repeat;
position: absolute;
z-index: 1000;
left: 45%;
top: 45%;
-webkit-animation-name: rotate;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}