blob: 8989c22943130d356e17148ff1e0ef8aeb821060 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.image-thumbnail {
display: inline-block;
vertical-align: top;
width: 128px;
height: 128px;
margin: .5em;
}
.glyphicon.spinner {
animation: glyphicon-spin-r 3s infinite linear;
}
@keyframes glyphicon-spin-r {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
|