Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:29
Show Gist options
  • Save groenewege/3957619 to your computer and use it in GitHub Desktop.
Save groenewege/3957619 to your computer and use it in GitHub Desktop.
css - emphasize
div[class*="emphasize-"] {
background: #69D2E7;
}
.emphasize-dark {
box-shadow: 0 0 5px 2px rgba(0,0,0,.35)
}
.emphasize-light {
box-shadow: 0 0 0 10px rgba(255,255,255,.25)
}
.emphasize-inset {
box-shadow: inset 0 0 7px 4px rgba(255,255,255,.5)
}
.emphasize-border {
box-shadow: inset 0 0 0 7px rgba(255,255,255,.5)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment