Skip to content

Instantly share code, notes, and snippets.

@himynameisdave
Last active January 9, 2017 04:11
Show Gist options
  • Save himynameisdave/ef56507a4542c5b64d199193c6437d2d to your computer and use it in GitHub Desktop.
Save himynameisdave/ef56507a4542c5b64d199193c6437d2d to your computer and use it in GitHub Desktop.
Stylish <a> Styling - Styling the :before element
@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