Created
December 17, 2016 15:12
-
-
Save clovisdasilvaneto/585d9d516f08d583305e64b68b65cb48 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
p { | |
padding-left: 2rem; | |
font-size:10rem; | |
text-shadow: 0 0 221px transparent; | |
animation: showText 1s 1.5s 1 forwards ease-out; | |
font-family: 'Satisfy', cursive; | |
position: relative; | |
} | |
@keyframes showText { | |
100% { | |
text-shadow: 0 0 1px #fff; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment