@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