Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shahab570/ef41137f5ae6be49e561ba22c2c66391 to your computer and use it in GitHub Desktop.
Save shahab570/ef41137f5ae6be49e561ba22c2c66391 to your computer and use it in GitHub Desktop.
@mixin links ($link, $visited, $hover, $active) {
& {
color: $link;
&:visited {
color: $visited;
}
&:hover {
color: $hover;
}
&:active, &:focus {
color: $active;
}
}
}
a {
@include links(orange, blue, yellow, teal);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment