Skip to content

Instantly share code, notes, and snippets.

@intellix
Created November 16, 2015 14:53
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 intellix/a22d1c69150ee852d074 to your computer and use it in GitHub Desktop.
Save intellix/a22d1c69150ee852d074 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// Import
$red: #cc0000;
// Defaults
$red: red !default;
$yellow: yellow !default;
$orange: orange !default;
$white: white !default;
$menu-color: $red;
$menu-item-color: $yellow;
menu {
color: $menu-color;
> li {
color: $menu-item-color;
}
}
menu {
color: #cc0000;
}
menu > li {
color: yellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment