Skip to content

Instantly share code, notes, and snippets.

@andershaig
Created March 27, 2013 18:06
Show Gist options
  • Save andershaig/5256637 to your computer and use it in GitHub Desktop.
Save andershaig/5256637 to your computer and use it in GitHub Desktop.
Bigger Items on Hover
.entry-body {
-webkit-animation-fill-mode:both;
-moz-animation-fill-mode:both;
-ms-animation-fill-mode:both;
-o-animation-fill-mode:both;
animation-fill-mode:both;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.entry-body:hover {
z-index:2;
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-ms-transform: scale(1.05);
-o-transform: scale(1.05);
transform: scale(1.05);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment