Skip to content

Instantly share code, notes, and snippets.

Created April 3, 2014 13:18
Show Gist options
  • Save anonymous/9954157 to your computer and use it in GitHub Desktop.
Save anonymous/9954157 to your computer and use it in GitHub Desktop.
A Pen by Olivvv.
@import "compass";
div:before {
content: "";
display: block;
width: 50px;
height: 50px;
background:red;
animation: rotate 3000ms forwards infinite ease;
}
@keyframes rotate {
from {transform: rotateX(0)}
to {transform: rotateX(360deg)}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment