Skip to content

Instantly share code, notes, and snippets.

@pepelsbey
Created August 4, 2014 10:45
Show Gist options
  • Save pepelsbey/f569655725920689ec0b to your computer and use it in GitHub Desktop.
Save pepelsbey/f569655725920689ec0b 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