Skip to content

Instantly share code, notes, and snippets.

@jahrlin
Created October 13, 2015 14:46
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 jahrlin/a23b9e6f519af13dbf1e to your computer and use it in GitHub Desktop.
Save jahrlin/a23b9e6f519af13dbf1e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
$name: "hej";
$color: red;
.#{$name} {
&.apppage {
.hero {
color: $color;
&-text-white {
color: #fff;
&:hover {
color: blue;
}
}
&-text-black {
color: #000;
&:hover {
color: red;
}
}
}
}
}
.hej.apppage .hero {
color: red;
}
.hej.apppage .hero-text-white {
color: #fff;
}
.hej.apppage .hero-text-white:hover {
color: blue;
}
.hej.apppage .hero-text-black {
color: #000;
}
.hej.apppage .hero-text-black:hover {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment