Skip to content

Instantly share code, notes, and snippets.

@kevinwestern
Created August 19, 2012 17:33
Show Gist options
  • Save kevinwestern/3396555 to your computer and use it in GitHub Desktop.
Save kevinwestern/3396555 to your computer and use it in GitHub Desktop.
#example {
width: 75px;
height: 75px;
background-color: black;
-moz-transition: all 2s ease-in-out 0.5s;
-o-transition: all 2s ease-in-out 0.5s;
-webkit-transition: all 2s ease-in-out 0.5s;
transition: all 2s ease-in-out 0.5s
}
#example:hover {
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment