mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
27 lines
617 B
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>
|