Skip to content

Instantly share code, notes, and snippets.

@tacsio
Created December 31, 2020 17:20
Show Gist options
  • Save tacsio/f531242ba692f3ed0479c1e390efc647 to your computer and use it in GitHub Desktop.
Save tacsio/f531242ba692f3ed0479c1e390efc647 to your computer and use it in GitHub Desktop.
spinner.css
.spinner {
border: 5px solid rgba(0, 0, 0, 0.1);
border-left-color: #22a6b3;
border-radius: 50%;
width: 25px;
height: 25px;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment