Skip to content

Instantly share code, notes, and snippets.

@sibsfinx
Created October 17, 2013 09:21
Show Gist options
  • Save sibsfinx/7021806 to your computer and use it in GitHub Desktop.
Save sibsfinx/7021806 to your computer and use it in GitHub Desktop.
compass css transitions example
@import "compass/css3/transition";
.btn-name {
@include transition( color 0.2s ease-in, background .2s ease-in );
}
.btn-state-1 {
color: #000;
background: #eee;
}
.btn-state-2 {
color: #fff;
background: #ff0000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment