mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
20 lines
446 B
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>
|