Created
October 5, 2016 21:50
-
-
Save ncoden/a1cef157c7ebe236fe115cd6d2bd4a26 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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