Skip to content

Instantly share code, notes, and snippets.

@zbecknell
Created July 13, 2017 13:39
Show Gist options
  • Save zbecknell/bc62e18e2f083c35da597b7e4aabb3aa to your computer and use it in GitHub Desktop.
Save zbecknell/bc62e18e2f083c35da597b7e4aabb3aa to your computer and use it in GitHub Desktop.
Some CSS Snippets
.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