summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/style.css
blob: ed1bda76baacd9e8e4382daf2cb7d3c0ead4d931 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -webkit-animation: spin2 .7s 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);}
}