Skip to content

Instantly share code, notes, and snippets.

@charafmrah
Last active February 12, 2023 03:24
Show Gist options
  • Save charafmrah/d87e25e2068ff065fb89f011bccad2a4 to your computer and use it in GitHub Desktop.
Save charafmrah/d87e25e2068ff065fb89f011bccad2a4 to your computer and use it in GitHub Desktop.
Animated loading spinner
.spinner {
border: 4px solid #f3f3f3;
border-top: 4px solid #3498db;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment