Created
May 7, 2013 03:27
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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