Skip to content

Instantly share code, notes, and snippets.

@djordjecupic
Last active August 11, 2018 16:23
Show Gist options
  • Save djordjecupic/c37a5814b777983695ca3202293e7a4f to your computer and use it in GitHub Desktop.
Save djordjecupic/c37a5814b777983695ca3202293e7a4f to your computer and use it in GitHub Desktop.
Styling links SASS Snippet
a {
&:link {
color: blue;
text-decoration: none;
}
&:visited {
color: purple;
&:hover {
color: orange;
}
&:active {
color: red;
}
}
&:hover {
color: aqua;
// text-decoration: none;
}
&:active {
color: red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment