Skip to content

Instantly share code, notes, and snippets.

@johnbacon
Created May 13, 2011 17:01
Show Gist options
  • Save johnbacon/970890 to your computer and use it in GitHub Desktop.
Save johnbacon/970890 to your computer and use it in GitHub Desktop.
Smooth Two-Color Text-Shadow
h1 {
color: #999;
font: bold 80px Helvetica, Arial;
text-shadow:
1px 0px 1px #ccc, 0px 1px 1px #eee,
2px 1px 1px #ccc, 1px 2px 1px #eee,
3px 2px 1px #ccc, 2px 3px 1px #eee,
4px 3px 1px #ccc, 3px 4px 1px #eee,
5px 4px 1px #ccc, 4px 5px 1px #eee,
6px 5px 1px #ccc, 5px 6px 1px #eee,
7px 6px 1px #ccc; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment