Skip to content

Instantly share code, notes, and snippets.

@groenewege
Created October 26, 2012 08:13
Show Gist options
  • Save groenewege/3957577 to your computer and use it in GitHub Desktop.
Save groenewege/3957577 to your computer and use it in GitHub Desktop.
css - dropshadow
.drop-shadow {
background: #9479fa;
}
.drop-shadow.top {
box-shadow: 0 -4px 2px -2px rgba(0,0,0,0.4)
}
.drop-shadow.right {
box-shadow: 4px 0 2px -2px rgba(0,0,0,0.4)
}
.drop-shadow.bottom {
box-shadow: 0 4px 2px -2px rgba(0,0,0,0.4)
}
.drop-shadow.left {
box-shadow: -4px 0 2px -2px rgba(0,0,0,0.4)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment