Last active
October 13, 2015 03:08
-
-
Save ElmahdiMahmoud/4130114 to your computer and use it in GitHub Desktop.
css: img scale
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
| /* img */ | |
| -webkit-transform:scale(0.9); | |
| -moz-transform:scale(0.9); | |
| -o-transform:scale(0.9); | |
| -webkit-transition-duration: 0.5s; | |
| -moz-transition-duration: 0.5s; | |
| -o-transition-duration: 0.5s; | |
| /* img:hover */ | |
| -webkit-transform:scale(1.1); | |
| -moz-transform:scale(1.1); | |
| -o-transform:scale(1.1); | |
| box-shadow:0px 0px 10px rgba(0,0,0,0.2); | |
| -webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.2); | |
| -moz-box-shadow:0px 0px 10px rgba(0,0,0,0.2); | |
| border-bottom: 2px solid #fff; | |
| background: #fff; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment