Created
April 9, 2013 17:17
-
-
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
This file contains 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
<h1>Party<br><span>Damage</span></h1> |
This file contains 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 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