Skip to content

Instantly share code, notes, and snippets.

@ericlva
Created September 24, 2013 14:07
Show Gist options
  • Save ericlva/6685313 to your computer and use it in GitHub Desktop.
Save ericlva/6685313 to your computer and use it in GitHub Desktop.
A Pen by Eric.
<div class="mods">ericbyz</div>
@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