mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
22 lines
382 B
HTML
22 lines
382 B
HTML
<div class="one-div"></div>
|
|
<style>
|
|
/* From Uiverse.io by dhruv465 - Tags: animated, spin, loader circle */
|
|
.one-div {
|
|
width: 40px;
|
|
height: 40px;
|
|
border: 8px solid #fff;
|
|
border-top-color: #8c8eff;
|
|
border-radius: 50%;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|