Skip to content

Instantly share code, notes, and snippets.

@prestontimmons
Created June 27, 2012 15:02
Show Gist options
  • Save prestontimmons/3004647 to your computer and use it in GitHub Desktop.
Save prestontimmons/3004647 to your computer and use it in GitHub Desktop.
CSS transition example
/* -- boxel --------------------------- */
.boxel {
background-color: #eee;
border-radius: 4px;
padding: 10px 0;
color: #666;
text-align: center;
-webkit-transition: background-color 0.25s linear;
-moz-transition: background-color 0.25s linear;
transition: background-color 0.25s linear;
}
.boxel-darkgrey {
background-color: #ccc;
}
.boxel:hover {
background-color: #ccc;
-webkit-transition: background-color 0.25s linear;
-moz-transition: background-color 0.25s linear;
transition: background-color 0.25s linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment