Skip to content

Instantly share code, notes, and snippets.

@OlivierPerceboisGarve
Forked from anonymous/dCosc.markdown
Created April 4, 2014 07:28
Show Gist options
  • Save OlivierPerceboisGarve/9969833 to your computer and use it in GitHub Desktop.
Save OlivierPerceboisGarve/9969833 to your computer and use it in GitHub Desktop.
@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