Skip to content

Instantly share code, notes, and snippets.

@cliftoncanady
Last active August 29, 2015 13:56
Show Gist options
  • Save cliftoncanady/9061725 to your computer and use it in GitHub Desktop.
Save cliftoncanady/9061725 to your computer and use it in GitHub Desktop.
.grow-me {
transform: scale(1);
-ms-transform: scale(1);
-moz-transform: scale(1);
-webkit-transform: scale(1);
transition: transform 0.25s;
-ms-transition: -ms-transform 0.25s;
-moz-transition: -moz-transform 0.25s;
-webkit-transition: -webkit-transform 0.25s;
}
.grow-me:hover {
transform: scale(1.1);
-ms-transform: scale(1.1);
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment