1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 12:15:06 +03:00
guide/static/loader.css
2016-04-16 23:06:59 +03:00

25 lines
517 B
CSS

/* From https://www.pexels.com/blog/css-only-loaders/ */
.loader {
animation: rotate 0.8s infinite linear;
border: 6px solid #333;
border-right-color: transparent;
border-radius: 50%;
}
#ajax-indicator {
position: fixed;
top: 0.5em;
right: 0.5em;
width: 2em;
height: 2em;
animation: rotate 0.8s infinite linear;
border: 6px solid #333;
border-right-color: transparent;
border-radius: 50%;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}