mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
18 lines
409 B
HTML
18 lines
409 B
HTML
<div class="loader"></div>
|
|
<style>
|
|
/* From Uiverse.io by eslam-hany - Tags: loader, circle loader */
|
|
.loader {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
|
|
animation: rotate 2.0s infinite linear;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
100% {
|
|
transform: rotate(1turn);
|
|
}
|
|
}
|
|
|
|
</style>
|