English
S
Loading...
Preparing your workspace
Preparing your workspace
Preparing your workspace
Design custom CSS loading spinners and instantly copy the code.
.loader {
width: 48px;
height: 48px;
border: 6px solid #3b82f640;
border-top-color: #3b82f6;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}