Skip to content

Instantly share code, notes, and snippets.

@A973C
Created October 20, 2013 11:33
Show Gist options
  • Select an option

  • Save A973C/7068383 to your computer and use it in GitHub Desktop.

Select an option

Save A973C/7068383 to your computer and use it in GitHub Desktop.
Text-Shadow. #CSS
<div>#333</div>
<i>THE GREATEST COLOR</i>
@import url(http://fonts.googleapis.com/css?family=Titillium+Web:400,700,900);
body {
background: #333;
font-family: 'Titillium Web', sans-serif;
text-align: center;
line-height: 80px;
}
div {
margin: 100px 0 0;
font-size: 140px;
font-weight: 700;
color: #242424;
text-shadow: 1px 1px #000, -1px 1px #000, 1px -2px #444, -1px -2px #444;
}
i {
font-size: 20px;
font-weight: 400;
color: #666;
font-style: normal;
text-shadow: 0 0 5px #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment