Created
March 6, 2013 17:10
-
-
Save randallb/5101021 to your computer and use it in GitHub Desktop.
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
.response.transition-from{ | |
max-height: 0px; | |
} | |
.response.transition-to{ | |
max-height: 1000px; | |
} | |
.response.transition-out{ | |
opacity: 0; | |
} | |
.response{ | |
margin-right: 20px; | |
transition: 1000ms max-height ease-in-out, 1000ms opacity ease; | |
-webkit-transition: 1000ms max-height ease-in-out, 1000ms opacity ease; | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment