Created
November 9, 2016 14:50
-
-
Save mkholodnyak/49450d0f89b1adcd1a403c5bd2726865 to your computer and use it in GitHub Desktop.
Pretty box-shadow
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
.block { | |
transition: box-shadow 150ms linear; | |
box-shadow: 0 1px 3px rgba(0,0,0,.28); | |
} | |
.block:hover { | |
box-shadow: 0 3px 9px rgba(0,0,0,.28); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment