Skip to content

Instantly share code, notes, and snippets.

@fmal
Forked from pepelsbey/underline.scss
Last active August 29, 2015 14:23
Show Gist options
  • Save fmal/512912420eec9b22fa25 to your computer and use it in GitHub Desktop.
Save fmal/512912420eec9b22fa25 to your computer and use it in GitHub Desktop.
// Underline
@mixin underline($color, $width) {
background:
linear-gradient(
to top,
$color,
$color #{$width}em,
transparent #{$width}em,
transparent
) repeat-x;
}
a {
@include underline(currentColor, 0.09);
color:$blue;
text-decoration:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment