Created
April 28, 2010 19:58
-
-
Save eculver/382623 to your computer and use it in GitHub Desktop.
css color + text shadow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* http://www.newthink.net */ | |
color: #2a2a2a; | |
text-shadow: rgba(0, 0, 0, 0.113281) 2px 2px 0px; | |
/* http://ozmm.org */ | |
color: red; | |
text-shadow: #0c0c0c 2px 2px 1px; | |
/* http://peroty.tumblr.com */ | |
color: #f2e3c6; | |
text-shadow: black 1px 1px 2px; | |
/* http://mislav.uniqpath.com */ | |
color: #1C4973; | |
text-shadow: rgba(28, 73, 115, 0.699219) 0px 0px 4px; | |
/* http://daverupert.com */ | |
color: #51514B; | |
text-shadow: #F8F8F8 1px 1px 1px; | |
/* http://notifo.com */ | |
color: #000; | |
text-shadow: #fff 1px 1px 0; | |
color: #fff; | |
text-shadow: #B96E00 1px 1px 0px; | |
color: #0060BF; | |
text-shadow: #EEE 1px 1px 0px; | |
color: #333; | |
text-shadow: #fff 1px 1px 0px; | |
/* opensource.apple.com */ | |
color: #000; /* hover: #08c */ | |
text-shadow: 0 1px 2px rgba(153, 153, 153, 65); | |
/* Wiredrive */ | |
color: #000; | |
text-shadow: 0 1px 0 #fff; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment