Skip to content

Instantly share code, notes, and snippets.

@vianhanif
Last active September 27, 2016 16:07
Show Gist options
  • Save vianhanif/46cc1cd8589783edf08d2fa0ca4f1bab to your computer and use it in GitHub Desktop.
Save vianhanif/46cc1cd8589783edf08d2fa0ca4f1bab to your computer and use it in GitHub Desktop.
drop shadow transitions
<div class="panel-article">
<!-- content -->
</div>
.panel-article{
box-shadow: 2px 2px 8px ;
transition: .3s;
&:hover{
box-shadow: 2px 2px 8px tint($primary, 30%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment