Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:30
Show Gist options
  • Save groenewege/3957624 to your computer and use it in GitHub Desktop.
Save groenewege/3957624 to your computer and use it in GitHub Desktop.
css - embossed
div[class*="embossed"] {
background: #8ec12d;
color: #333;
text-shadow: 0 1px 1px rgba(255,255,255,0.9);
}
.embossed-light {
border: 1px solid rgba(0,0,0,0.05);
box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.embossed-heavy {
border: 1px solid rgba(0,0,0,0.05);
box-shadow:
inset 0 2px 3px rgba(255,255,255,0.3),
inset 0 -2px 3px rgba(0,0,0,0.3),
0 1px 1px rgba(255,255,255,0.9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment