galaxy/loaders/CharandeepSingh01_curly-husky-35.html

20 lines
446 B
HTML

<div class="loader"></div>
<style>
/* From Uiverse.io by CharandeepSingh01 - Tags: loading, loader, loading animation, 3d loader */
/*View in dark mode for good effects*/
.loader {
border: 4px solid red;
width: 100px;
height: 100px;
border-radius: 50%;
border-right-color: transparent;
animation: rot 1s linear infinite;
box-shadow: 0px 0px 20px red inset;
}
@keyframes rot {
100% {
transform: rotate(360deg);
}
}
</style>