galaxy/loaders/EmmaxPlay_polite-husky-37.html

40 lines
634 B
HTML

<div class="spinner"></div>
<style>
/* From Uiverse.io by EmmaxPlay - Tags: loader */
.spinner {
position: relative;
width: 60px;
height: 60px;
border-radius: 50%;
}
.spinner::before,
.spinner:after {
content: "";
position: absolute;
border-radius: inherit;
}
.spinner:before {
width: 100%;
height: 100%;
background-image: linear-gradient(0deg, #ff00cc 0%, #333399 100%);
animation: spin8932 .5s infinite linear;
}
.spinner:after {
width: 85%;
height: 85%;
background-color: #212121;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@keyframes spin8932 {
to {
transform: rotate(360deg);
}
}
</style>