Skip to content

Instantly share code, notes, and snippets.

@hitautodestruct
Created March 10, 2015 11:49
Show Gist options
  • Save hitautodestruct/2228ae72c4386699c6d0 to your computer and use it in GitHub Desktop.
Save hitautodestruct/2228ae72c4386699c6d0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
=language
$language: "Greek"
.Greek &
@content
$language: "Hebrew"
.Hebrew &
@content
.my-class
$language: 'english'
+language
color: red
background-color: url( #{$language} )
.Greek .my-class {
color: red;
background-color: url(english);
}
.Hebrew .my-class {
color: red;
background-color: url(english);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment