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
| @-webkit-keyframes NAME-YOUR-ANIMATION { | |
| 0% { opacity: 0; } | |
| 100% { opacity: 1; } | |
| } | |
| @-moz-keyframes NAME-YOUR-ANIMATION { | |
| 0% { opacity: 0; } | |
| 100% { opacity: 1; } | |
| } | |
| @-o-keyframes NAME-YOUR-ANIMATION { | |
| 0% { opacity: 0; } |
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
| .modal { | |
| /* some styles to position the modal at the center of the page */ | |
| position: fixed; | |
| top: 50%; | |
| left: 50%; | |
| width: 300px; | |
| line-height: 200px; | |
| height: 200px; | |
| margin-left: -150px; |
NewerOlder