Last active
July 17, 2018 20:21
-
-
Save dannydickson/75cca03d6f7e87a98ef66c4612a7e340 to your computer and use it in GitHub Desktop.
Material Hover Effect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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