Created
December 17, 2016 15:43
-
-
Save clovisdasilvaneto/0b2a350c254b758481eb3e0b0f8eae4c 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
@keyframes scaleBounce { | |
100% { | |
transform: scale(1); | |
opacity: 0.3; | |
background: transparent; | |
box-shadow: 0 0 20px 103px transparent; | |
} | |
} | |
@keyframes showText { | |
80% { | |
text-shadow: 0 0 1px #fff; | |
} | |
100% { | |
text-shadow: 0 0 1px #2eff2e, 0 0 20px #2eff2e; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment