mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
31 lines
644 B
HTML
31 lines
644 B
HTML
<div class="spinner">
|
|
<div class="Spinner"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by K2-dev21 - Tags: loader */
|
|
.spinner {
|
|
background-image: linear-gradient(#acb6e5 35%, #86fde8);
|
|
width: 100px;
|
|
height: 100px;
|
|
animation: spinning21 1.7s linear infinite;
|
|
text-align: center;
|
|
border-radius: 50px;
|
|
filter: blur(1px);
|
|
box-shadow: 0px -5px 20px 0px rgb(186, 66, 255),
|
|
0px 5px 20px 0px rgb(0, 225, 255);
|
|
}
|
|
|
|
.Spinner {
|
|
background-color: rgb(36, 36, 36);
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50px;
|
|
filter: blur(10px);
|
|
}
|
|
|
|
@keyframes spinning21 {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|