Created
September 24, 2013 14:08
-
-
Save ericlva/6685326 to your computer and use it in GitHub Desktop.
A Pen by Eric.
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
| <div class="mods">ericbyz</div> |
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
| @import "compass"; | |
| html,body{height:100%;} | |
| .mods{ | |
| font:80px "Prosto One"; | |
| text-transform : uppercase; | |
| height:100%; | |
| display:flex; | |
| justify-content:center; | |
| align-items:center; | |
| background:hsla(0%,0%,0%,1); | |
| color:white; | |
| letter-spacing:20px; | |
| text-shadow:0 0 40px green; | |
| -webkit-animation:move 3s ease-in-out infinite; | |
| } | |
| @-webkit-keyframes move{ | |
| 0%{ | |
| text-shadow:0 0 40px hsla(0%,0%,0%,1); | |
| } | |
| 50%{ | |
| text-shadow:0 0 30px green; | |
| font:30px 'Lato', 'Helvetica', 'Arial', sans-serif; | |
| -webkit-transform:rotate(10deg); | |
| background:hsla(0%,0%,0%,.8); | |
| } | |
| 100%{ | |
| text-shadow:0 0 55px yellow; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment