Skip to content

Instantly share code, notes, and snippets.

@louh
Created September 15, 2013 23:39
Show Gist options
  • Save louh/6575260 to your computer and use it in GitHub Desktop.
Save louh/6575260 to your computer and use it in GitHub Desktop.
body * {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
body *:hover {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment