Created
March 25, 2012 18:38
-
-
Save roykolak/2198931 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
.iframe-container { | |
-webkit-margin-start: -20px; | |
-webkit-transition: margin 100ms, opacity 100ms; | |
bottom: 0; | |
left: 0; | |
opacity: 0; | |
position: absolute; | |
right: 0; | |
top: 0; | |
z-index: 1; | |
} | |
.iframe-container.selected { | |
-webkit-margin-start: 0; | |
-webkit-transition: margin 200ms, opacity 200ms; | |
-webkit-transition-delay: 100ms; | |
opacity: 1; | |
z-index: 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment