Skip to content

Instantly share code, notes, and snippets.

@ncoden
Created October 5, 2016 21:50
Show Gist options
  • Save ncoden/a1cef157c7ebe236fe115cd6d2bd4a26 to your computer and use it in GitHub Desktop.
Save ncoden/a1cef157c7ebe236fe115cd6d2bd4a26 to your computer and use it in GitHub Desktop.
$COLOR_RED: #FF0000;
$COLOR_GREEN: #00FF00;
$COLOR_BLUE: #0000FF;
$House_HEIGHT: 20px;
$House_Door_HEIGHT: 6px;
@function House_Window_color($color) {
@return darker($color, 50%);
}
@mixin House_Window($color) {
border-color: House_Window_color($color);
}
@mixin House($color) {
&_LeftWindow { @include House_Window($COLOR-RED); }
&_RightWindow { @include House_Window($COLOR-GREEN); }
&_Door {
height: House_Door_HEIGHT;
}
background-color: $color;
height: $HOUSE_HEIGHT;
}
.MyHouse {
@include House($COLOR_BLUE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment