Skip to content

Instantly share code, notes, and snippets.

@HilmiZul
Created January 18, 2019 13:30
Show Gist options
  • Select an option

  • Save HilmiZul/22dd4574ce59615424035c001859adbc to your computer and use it in GitHub Desktop.

Select an option

Save HilmiZul/22dd4574ce59615424035c001859adbc to your computer and use it in GitHub Desktop.
</style>
.rect {
position: absolute;
top: 50%;
left: 50%;
width: 120px;
height: 120px;
margin:-60px 0 0 -60px;
animation:spin 3s linear infinite;
border-radius: 20%;
background: rgb(200, 10, 153);
}
@keyframes spin {
100% {
transform:rotate(360deg);
}
}
</style>
<div class="rect"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment