Created
July 25, 2017 10:40
-
-
Save am3000/4b41b6304f6d6339c4e969ae7ae6afaa to your computer and use it in GitHub Desktop.
svg icon img link
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
<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