Skip to content

Instantly share code, notes, and snippets.

@AlexeyMK
Created June 26, 2015 15:47
Show Gist options
  • Save AlexeyMK/5a94f6f8e5f1b10f0cde to your computer and use it in GitHub Desktop.
Save AlexeyMK/5a94f6f8e5f1b10f0cde to your computer and use it in GitHub Desktop.
Logos a la hackerparadise.org - not invented here but it works!
.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