Skip to content

Instantly share code, notes, and snippets.

@oller
Created April 30, 2014 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oller/11431886 to your computer and use it in GitHub Desktop.
Save oller/11431886 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v0.7.0)
// ----
// Sass Styles to style external links.
// $url string interpolated into background-color, but not selector?
$url: 'site.com';
a[href^="http://"]:not([href*="#{$url}"]).cta,
a[href^="https://"]:not([href*="#{$url}"]).cta {
background-color: #{$url}; // string will echo correctly
}
a[href^="http://"]:not([href*="#{$url}"]).cta, a[href^="https://"]:not([href*="#{$url}"]).cta {
background-color: site.com; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment