Skip to content

Instantly share code, notes, and snippets.

@saylestyler
Last active May 17, 2019 19:12
Show Gist options
  • Save saylestyler/0fe380df1b08537053b52f0c0a5070d0 to your computer and use it in GitHub Desktop.
Save saylestyler/0fe380df1b08537053b52f0c0a5070d0 to your computer and use it in GitHub Desktop.
#css
@keyframes donut-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.donut {
display: inline-block;
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #7983ff;
border-radius: 50%;
width: 30px;
height: 30px;
animation: donut-spin 1.2s linear infinite;
}
<div class="donut"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment