Last active
January 9, 2017 04:11
-
-
Save himynameisdave/ef56507a4542c5b64d199193c6437d2d to your computer and use it in GitHub Desktop.
Stylish <a> Styling - Styling the :before element
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
@linkBlue: #0000ee; | |
a { | |
color: @linkBlue; | |
display: inline-block; | |
position: relative; | |
text-decoration: none; | |
&:before { | |
background-color: @linkBlue; | |
content: ''; | |
height: 2px; // this can be modified based on the boldness of the font | |
position: absolute; | |
bottom: -1px; // again this can be adjusted based on line-height/font-size | |
width: 100%; | |
} | |
&:hover { | |
// more to come | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment