HTML5 Boilerplate text-shadow

The text-shadow from the html5 boilerplate framework website

by James Doyle

HTML

<h1>HTML5 Boilerplate</h1>

CSS

body { background: #121212; }
h1 {
    font-weight:bold;
    color: #e3d7bf;
    font-size:3em;
    text-shadow: 1px 1px 0px black, 2px 2px 0px #476871, 3px 3px 0px #476871, 4px 4px 0px #476871, 5px 5px 0px #476871, 6px 6px 0px #476871, 7px 7px 0px #476871;
}