Created
July 13, 2017 13:39
-
-
Save zbecknell/bc62e18e2f083c35da597b7e4aabb3aa to your computer and use it in GitHub Desktop.
Some CSS Snippets
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
.subtle-shadow-with-transition{ | |
box-shadow: 3px 3px 10px -2px rgba(0, 0, 0, 0.3); | |
-webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); | |
transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); | |
} | |
.scale-up-size{ | |
-webkit-transform: scale(1.2, 1.2); | |
transform: scale(1.2, 1.2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment