Created
August 11, 2015 11:37
-
-
Save dbonates/91c53787143e6adb7b89 to your computer and use it in GitHub Desktop.
css for popup cubic curve
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
| .popup { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| bottom: 0; | |
| right: 0; | |
| display: block; | |
| text-align: center; | |
| margin: 0 auto; | |
| color: #f0c600; | |
| background-color: rgba(0,0,0,0.9); | |
| padding: 50px; | |
| -webkit-transform: scale(0.5); | |
| opacity: 0; | |
| transition: all 0.55s cubic-bezier(0.68, -0.55, 0.265, 1.55); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment