Created
March 23, 2011 09:21
-
-
Save amuino/882828 to your computer and use it in GitHub Desktop.
Trucos de CSS vistos en webs reales para efectos "vistosos"
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
/* Texto elevado */ | |
.elevado { | |
color: white; | |
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.68); | |
} | |
/* Texto hundido (grabado) */ | |
.hundido { | |
color: #243748; | |
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.33); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment