Skip to content

Instantly share code, notes, and snippets.

@broccolini
Forked from nrrrdcore/frontage.css
Created May 30, 2012 01:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save broccolini/2832074 to your computer and use it in GitHub Desktop.
Save broccolini/2832074 to your computer and use it in GitHub Desktop.
Outlined Type Effect with CSS Text-Shadowing
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(0,0,0,.25),
0 -1px 10px rgba(0,0,0,.1),
0 1px 10px #7A060C;
}
<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