Skip to content

Instantly share code, notes, and snippets.

@alexsasharegan
Created April 14, 2017 05:44
Show Gist options
  • Save alexsasharegan/688b6dc9112272f4490b02c61b410e16 to your computer and use it in GitHub Desktop.
Save alexsasharegan/688b6dc9112272f4490b02c61b410e16 to your computer and use it in GitHub Desktop.
Add in some material design style drop shadows with css classes
.md-drop-shadow-lt {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.md-drop-shadow {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.md-drop-shadow-heavy {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment