Skip to content

Instantly share code, notes, and snippets.

@zbert
Last active July 7, 2016 10:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zbert/e514fd2aa078443f54f8 to your computer and use it in GitHub Desktop.
Save zbert/e514fd2aa078443f54f8 to your computer and use it in GitHub Desktop.
hover/touch syles for links
.link {
//desktop styles
color: $color-brand-white;
&:hover {
color: $color-brand-red;
}
//overwrite for touch - uses modernizr to overwrite link pseudo classes
.touch &:link,
.touch &:visited,
.touch &:hover {
//default color
color: $color-brand-white;
}
.touch &:active,
.touch &:focus {
//activated/touched color
color: $color-brand-red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment