galaxy/loaders/aadium_bright-lion-66.html

27 lines
617 B
HTML

<div class="loader">
<div class="cover"></div>
</div>
<style>
/* From Uiverse.io by aadium - Tags: loader, glow, neon */
.loader {
width: 100px;
height: 100px;
background-image: #212121;
box-shadow: 0px 5px 10px #7fe8ff, 0px -5px 10px #99ff33, 5px 0px 10px#4cffb4, -5px 0px 10px #4cffb4,
inset 0px 5px 10px #99ff33, inset 0px -5px 10px #7fe8ff, inset 5px 0px 10px#4cffb4, inset -5px 0px 10px #4cffb4;
border-radius: 7em;
position: relative;
animation: rotate 1s linear infinite;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style>