Skip to content

Instantly share code, notes, and snippets.

@alexadark
Created March 24, 2014 21:28
Show Gist options
  • Save alexadark/9749542 to your computer and use it in GitHub Desktop.
Save alexadark/9749542 to your computer and use it in GitHub Desktop.
css: simple social icons
.simple-social-icons li a {
-webkit-transition: -webkit-transform 0.4s ease-out;
-moz-transition: -moz-transform 0.4s ease-out;
transition: transform 0.4s ease-out;
}
.simple-social-icons li a:hover {
-webkit-transform: rotateZ(360deg);
-moz-transform: rotateZ(360deg);
transform: rotateZ(360deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment