Files
hugo-profile/static/css/v3/loader.css
T
gurusabarish 0cf404308f list view
2021-06-08 16:16:14 +05:30

27 lines
443 B
CSS

#loader {
position: fixed;
border: 5px solid #007bff;
border-radius: 50%;
border-top: 5px solid #444444;
border-bottom: 5px solid #444444;
border-right: 5px solid #444444;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
.center {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}