Created
August 31, 2015 04:38
-
-
Save waystilos/11347d9b0e96a8c5e9af to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// variables | |
//Colors | |
$white: #fff; | |
$black: #000000; | |
$red: #ff0000; | |
//placeholder | |
%bar { | |
background-color: $red; | |
width: 100%; | |
border-radius: 5px; | |
} | |
//Font Families | |
$arial: Arial, Helvetica, sans-serif; | |
$comic: "Comic Sans MS", cursive, sans-serif; | |
//////////Variables end///////////// | |
.bar { | |
background-color: $red; | |
width: 100%; | |
border-radius: 5px; | |
} | |
.foo { | |
@extend .bar; | |
} | |
////////Nesting End/////////// |
This file contains 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
.bar, .foo { | |
background-color: #ff0000; | |
width: 100%; | |
border-radius: 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment