Last active
August 29, 2015 13:57
-
-
Save NatalieMac/9612548 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.photo-grid img { | |
display: block; | |
height: auto; | |
-webkit-transition: all 300ms; | |
-moz-transition: all 300ms; | |
transition: all 300ms; | |
max-width: 100%; | |
} | |
.photo-grid li:hover img { | |
-webkit-transform: scale(1.4); | |
-moz-transform: scale(1.4); | |
transform: scale(1.4); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment