Skip to content

Instantly share code, notes, and snippets.

@jitendravyas
Created September 9, 2013 11:03
Show Gist options
  • Save jitendravyas/6494166 to your computer and use it in GitHub Desktop.
Save jitendravyas/6494166 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.10)
// Compass (v0.13.alpha.4)
// ----
// Vars - note the quotes around comma separated selectors
$a-tags: 'a:link, a:visited';
$a-tags-hover: 'a:active, a:hover, a:focus';
// Usage
#{$a-tags} {
color: red;
font-size: 1em;
text-decoration: none;
}
#{$a-tags-hover} {
color: blue;
}
a:link, a:visited {
color: red;
font-size: 1em;
text-decoration: none;
}
a:active, a:hover, a:focus {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment