Created
November 10, 2017 16:17
-
-
Save manbearwolf/235ce1c1c27091a7b0640716949de072 to your computer and use it in GitHub Desktop.
Custom CSS3 In Blogger Posts
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