-
-
Save broccolini/2845241 to your computer and use it in GitHub Desktop.
Outlined Type Effect with CSS Text-Shadowing
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
body { | |
background-color: #7A060C; | |
} | |
#wrapper { | |
width: 90%; | |
margin: 200px auto; | |
} | |
h1 { | |
font-family: 'Frontage-Outline'; | |
font-size: 50px; | |
text-align: center; | |
color: #7A060C; | |
letter-spacing: -5px; | |
text-shadow: 0 1px 1px rgba(59,0,3,.9), | |
0 -1px 10px rgba(59,0,3,.25), | |
0 -1px 1px #954043; | |
} |
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
<body> | |
<div id="wrapper"> | |
<h1>Outlined + Red</h1> | |
</div> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment