Skip to content

Instantly share code, notes, and snippets.

@dhenson02
Created December 3, 2022 10:16
Show Gist options
  • Save dhenson02/8e2b010c24c04ca6403a2502dbc8e28b to your computer and use it in GitHub Desktop.
Save dhenson02/8e2b010c24c04ca6403a2502dbc8e28b to your computer and use it in GitHub Desktop.
CSS Loader generated by OpenAI ChatGPT
<div class="loading"></div>
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.loading {
animation: loading 1s infinite linear;
border: 2px solid black;
border-radius: 50%;
border-top: 2px solid red;
border-right: 2px solid green;
border-bottom: 2px solid blue;
width: 24px;
height: 24px;
}
@dhenson02
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment