Skip to content

Instantly share code, notes, and snippets.

@amuino
Created March 23, 2011 09:21
Show Gist options
  • Save amuino/882828 to your computer and use it in GitHub Desktop.
Save amuino/882828 to your computer and use it in GitHub Desktop.
Trucos de CSS vistos en webs reales para efectos "vistosos"
/* 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