Skip to content

Instantly share code, notes, and snippets.

@evsasse
Last active August 29, 2015 14:24
Show Gist options
  • Save evsasse/95f7e5c78b18deff7d85 to your computer and use it in GitHub Desktop.
Save evsasse/95f7e5c78b18deff7d85 to your computer and use it in GitHub Desktop.
some netflix text fx
body{
font-family: monospace;
background-color: #FAFAFA
}
h1{
text-shadow: 0 1px 0 #000,
0 2px 0 #111,
0 3px 1px rgba(0,0,0,0.8),
0 4px 1px rgba(0,0,0,0.5),
0 5px 2px rgba(0,0,0,0.3);
color: #DA2525;
font-size: 4em;
transition: text-shadow 0.8s ease;
}
h1:hover{
text-shadow: 0 0 0 #FAA;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment