Skip to content

Instantly share code, notes, and snippets.

@dannydickson
Last active July 17, 2018 20:21
Show Gist options
  • Save dannydickson/75cca03d6f7e87a98ef66c4612a7e340 to your computer and use it in GitHub Desktop.
Save dannydickson/75cca03d6f7e87a98ef66c4612a7e340 to your computer and use it in GitHub Desktop.
Material Hover Effect
.div {
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
transition: box-shadow 0.3s ease-in-out;
}
.div:hover {
box-shadow: 0 0px 30px rgba(13,115,142,0.2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment