mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
21 lines
359 B
HTML
21 lines
359 B
HTML
<div class="loader"></div>
|
|
<style>
|
|
/* From Uiverse.io by Yaya12085 - Tags: loader, pulse */
|
|
.loader {
|
|
height: 20px;
|
|
width: 20px;
|
|
border-radius: 50%;
|
|
background-color: #69ffa8;
|
|
animation: 1.5s pulse infinite ease-in-out;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
box-shadow: 0 0 0 0 #69ffa8;
|
|
}
|
|
|
|
100% {
|
|
box-shadow: 0 0 0 14px #69ffa800;
|
|
}
|
|
}
|
|
</style>
|