mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
18 lines
345 B
HTML
18 lines
345 B
HTML
<div class="loader"></div>
|
|
<style>
|
|
/* From Uiverse.io by mrhyddenn - Tags: loader, spinner */
|
|
.loader {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
border: 3px solid rgb(255,255,255,.2);
|
|
border-top-color: transparent;
|
|
animation: rot1 1.2s linear infinite;
|
|
}
|
|
|
|
@keyframes rot1 {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|