Skip to content

Instantly share code, notes, and snippets.

@dougwaldron
Created April 26, 2012 12:48
Show Gist options
  • Select an option

  • Save dougwaldron/2499331 to your computer and use it in GitHub Desktop.

Select an option

Save dougwaldron/2499331 to your computer and use it in GitHub Desktop.
Great text shadow example
h1 { /* From http://westcoastlogic.com/slides/debug-mobile/#/4 */
text-shadow:
0 1px 0 #CCC,
0 2px 0 #C9C9C9,
0 3px 0 #BBB,
0 4px 0 #B9B9B9,
0 5px 0 #AAA,
0 6px 1px rgba(0, 0, 0, .1),
0 0 5px rgba(0, 0, 0, .1),
0 1px 3px rgba(0, 0, 0, .3),
0 3px 5px rgba(0, 0, 0, .2),
0 5px 10px rgba(0, 0, 0, .25),
0 20px 20px rgba(0, 0, 0, .15);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment