Skip to content

Instantly share code, notes, and snippets.

@danrasmuson
Created October 29, 2014 22:40
Show Gist options
  • Select an option

  • Save danrasmuson/2e2847f6522639357603 to your computer and use it in GitHub Desktop.

Select an option

Save danrasmuson/2e2847f6522639357603 to your computer and use it in GitHub Desktop.
/*TILT*/
.tilt {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.tilt:hover {
-webkit-transform: rotate(-10deg);
-moz-transform: rotate(-10deg);
-o-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment