blob: 17104642a1ea441d4a26c4b54f3e3105ab3fcdae (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | .glyphicon-refresh-animate {
    -animation: spin 1.8s infinite linear;
    -webkit-animation: spin2 1.8s infinite linear;
}
@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}
@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}
 |