Created
April 17, 2015 13:05
-
-
Save StfBauer/ca58568a43954339f404 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<div class="box"> | |
Hello world | |
</div> |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
%box { | |
width: 10em; | |
height: 5em; | |
} | |
.box-blue { | |
@extend %box; | |
background-color: blue; | |
} | |
.box-green { | |
@extend %box; | |
background-color: green; | |
} | |
.box-yellow{ | |
@extend %box; | |
background-color: yellow; | |
} | |
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
.box-blue, .box-green, .box-yellow { | |
width: 10em; | |
height: 5em; | |
} | |
.box-blue { | |
background-color: blue; | |
} | |
.box-green { | |
background-color: green; | |
} | |
.box-yellow { | |
background-color: yellow; | |
} |
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
<div class="box"> | |
Hello world | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment