misc_pterodactyl-panel/resources/assets/styles/components/spinners.css

55 lines
933 B
CSS

.spinner {
color: transparent;
pointer-events: none;
position: relative;
&:after {
@apply .border-2 .border-grey-light .absolute .block;
animation: spinners--spin 500ms infinite linear;
border-radius: 9999px;
border-top-color: transparent !important;
border-right-color: transparent !important;
content: '';
width: 1em;
height: 1em;
left: calc(50% - (1em / 2));
top: calc(50% - (1em / 2));
}
&.spinner-xl:after {
@apply .h-16 .w-16;
left: calc(50% - (4rem / 2));
}
/**
* Speeds
*/
&.spin-slow:after {
animation: spinners--spin 1200ms infinite linear;
}
/**
* Spinner Colors
*/
&.blue:after {
@apply .border-blue;
}
&.white:after {
@apply .border-white;
}
&.spinner-thick:after {
@apply .border-4;
}
}
@keyframes spinners--spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}