Skip to content

Instantly share code, notes, and snippets.

@hidoos
Created April 21, 2015 09:11
Show Gist options
  • Save hidoos/118389b5c576ea018d20 to your computer and use it in GitHub Desktop.
Save hidoos/118389b5c576ea018d20 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
// example1
$color:red;
.button{
$color:blue;
color:$color;
&:hover{
color:$color;
}
}
.button-primary {
color:$color;
}
// example
.module{
$primary-color:blue;
color:$primary-color;
.module-hd{
$primary-color:lightblue;
color:$primary-color;
}
.module-bd{
color:$primary-color;
}
}
// example !default
$alert-bg-color:lightgreen;
$alert-bg-color:lightblue !default;
.alert{
background:$alert-bg-color;
}
.button {
color: blue;
}
.button:hover {
color: blue;
}
.button-primary {
color: red;
}
.module {
color: blue;
}
.module .module-hd {
color: lightblue;
}
.module .module-bd {
color: lightblue;
}
.alert {
background: lightgreen;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment