You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
529 B
18 lines
529 B
.glyphicon-refresh-animate {
|
|
-animation: spin .7s infinite linear;
|
|
-webkit-animation: spinWebkit .7s infinite linear;
|
|
-moz-animation: spinMoz .7s infinite linear;
|
|
}
|
|
|
|
@-webkit-keyframes spinWebkit {
|
|
from { -webkit-transform: rotate(0deg);}
|
|
to { -webkit-transform: rotate(360deg);}
|
|
}
|
|
@keyframes spinMoz {
|
|
from { transform: scale(1) rotate(0deg);}
|
|
to { transform: scale(1) rotate(360deg);}
|
|
}
|
|
@keyframes spin {
|
|
from { transform: scale(1) rotate(0deg);}
|
|
to { transform: scale(1) rotate(360deg);}
|
|
}
|
|
|