Skip to content

Instantly share code, notes, and snippets.

@am3000
Created July 25, 2017 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save am3000/4b41b6304f6d6339c4e969ae7ae6afaa to your computer and use it in GitHub Desktop.
Save am3000/4b41b6304f6d6339c4e969ae7ae6afaa to your computer and use it in GitHub Desktop.
svg icon img link
<a href="https://www.linkedin.com" rel="me">
<img src="images/linkedin.svg" class="social-icon">
</a>
// CSS
.social-icon {
margin-left: 10px;
height: 20px;
opacity: 0.7;
transition: opacity 0.15s linear;
}
.social-icon:hover {
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment