Created
June 26, 2015 15:47
-
-
Save AlexeyMK/5a94f6f8e5f1b10f0cde to your computer and use it in GitHub Desktop.
Logos a la hackerparadise.org - not invented here but it works!
This file contains 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
.logo { | |
filter: grayscale(100%); | |
-webkit-filter: grayscale(100%); | |
opacity: 0.6; | |
transition-property: opacity,transform; | |
-webkit-trdansition-property: opacity,-webkit-transform; | |
transition-duration: .3s; | |
-webkit-transition-duration: .3s; | |
} | |
.logo:hover { | |
transform: scale(1.1); | |
filter: grayscale(0%); | |
-webkit-filter: grayscale(0%); | |
opacity: 0.8; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment