Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save theaccordance/5530064 to your computer and use it in GitHub Desktop.

Select an option

Save theaccordance/5530064 to your computer and use it in GitHub Desktop.
Method for applying a transition to a background color. Emerland color from the Flat-UI kit which can be found at http://designmodo.github.io/Flat-UI/
.emerland {
background-color: #2ECC71;
-webkit-transition: background-color 500ms linear;
-moz-transition: background-color 500ms linear;
-o-transition: background-color 500ms linear;
-ms-transition: background-color 500ms linear;
transition: background-color 500ms linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment