Skip to content

Instantly share code, notes, and snippets.

@Tomotoes
Last active August 18, 2019 07:17
Show Gist options
  • Save Tomotoes/edf096e22a7f323fcc2a8f96c789fb5c to your computer and use it in GitHub Desktop.
Save Tomotoes/edf096e22a7f323fcc2a8f96c789fb5c to your computer and use it in GitHub Desktop.
Loading renderings
<div class="loading"></div>
body {
background-color: #000;
overflow-y: hidden;
}
.loading {
height: 10em;
width: 10em;
margin: 100px auto;
border: 1.1em solid rgba(255, 255, 255, 0.2);
border-left-color: #fff;
border-radius: 100%;
animation: load 1.1s infinite linear;
}
@keyframes load {
to {
transform: rotate(1turn);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment