Skip to content

Instantly share code, notes, and snippets.

@daz4126
Created March 5, 2012 07:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daz4126/1977175 to your computer and use it in GitHub Desktop.
Save daz4126/1977175 to your computer and use it in GitHub Desktop.
DAZ4126 SCSS mixin
@mixin links($color:white,$hovercolor:red,$background:$color){
a,a:link,a:visited{
text-decoration: underline;
text-shadow: none;
color:$color;
&:hover{
background: $background;
color:$hovercolor;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment