Last active
September 27, 2016 16:07
-
-
Save vianhanif/46cc1cd8589783edf08d2fa0ca4f1bab to your computer and use it in GitHub Desktop.
drop shadow transitions
This file contains 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 class="panel-article"> | |
<!-- content --> | |
</div> |
This file contains 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
.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