Skip to content

Instantly share code, notes, and snippets.

@mkholodnyak
Created November 9, 2016 14:50
Show Gist options
  • Save mkholodnyak/49450d0f89b1adcd1a403c5bd2726865 to your computer and use it in GitHub Desktop.
Save mkholodnyak/49450d0f89b1adcd1a403c5bd2726865 to your computer and use it in GitHub Desktop.
Pretty box-shadow
.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