Created
October 23, 2017 21:03
-
-
Save manbearwolf/3ea6e922687b57625dc62ce9c9164886 to your computer and use it in GitHub Desktop.
Custom Classes Code Snippet 2 (Above/Before "]]></b:skin>")
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
| <div class="custom2"> | |
| <img border="0" height="200" src="https://cl.ly/mmrb/unnamed.jpg" width="171"> | |
| </div> |
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
| .custom2 img | |
| { | |
| -webkit-transition: all 1s ease; | |
| -moz-transition: all 1s ease; | |
| -o-transition: all 1s ease; | |
| } | |
| .custom2 img:hover | |
| { | |
| -o-transition: all 0.6s; | |
| -moz-transition: all 0.6s; | |
| -webkit-transition: all 0.6s; | |
| -moz-transform: scale(1.4); | |
| -o-transform: scale(1.4); | |
| -webkit-transform: scale(1.4); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment