Created
May 6, 2016 14:36
-
-
Save andreasvirkus/770004dc0180fba206933e3e48d3402b to your computer and use it in GitHub Desktop.
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
h2, h3, h4, h5, h6 { | |
position: relative; | |
} | |
.permalink { | |
position: absolute; | |
left: -0.5em; | |
opacity: 0; | |
-webkit-transition: opacity 0.2s ease-in-out 0.1s; | |
transition: opacity 0.2s ease-in-out 0.1s; | |
} | |
h2:hover .permalink, | |
h3:hover .permalink, | |
h4:hover .permalink, | |
h5:hover .permalink, | |
h6:hover .permalink { | |
opacity: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment