Skip to content

Instantly share code, notes, and snippets.

@paultreny
Created April 9, 2013 17:17
Show Gist options
  • Save paultreny/5347532 to your computer and use it in GitHub Desktop.
Save paultreny/5347532 to your computer and use it in GitHub Desktop.
A CodePen by Antti Nyman. Party Damage Text-Shadow - Inspiration from Dribbble by Adam Grano: http://dribbble.com/shots/1015796-PD
<h1>Party<br><span>Damage</span></h1>
@import url(http://fonts.googleapis.com/css?family=Didact+Gothic);
body {
background-color: #ffefe;
}
h1 {
color: rgba(0, 0, 0, .0);
text-align: center;
position: relative;
font: 98px/.69em 'Didact Gothic', sans-serif;
font-weight: 600;
width: 100%;
text-transform: uppercase;
text-shadow:
0px 0px 0px rgba(142, 31, 8, .9),
8px 0px 0px rgba(0, 0, 0, .5),
-9px 0px 0px rgba(237, 59, 45, .9),
-5px -7px 0px rgba(230, 217, 30, .9);
}
span {
position: relative;
z-index: -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment