Created
August 31, 2015 04:46
-
-
Save waystilos/5d1f5fe414dcbdd20913 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
<div class="foo"></div> |
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 | |
$primary-color: #fb445a; | |
$secondary-color: #83d6b7; | |
//Font Families | |
$arial: Arial, Helvetica, sans-serif; | |
$comic: "Comic Sans MS", cursive, sans-serif; | |
//////////Variables end///////////// | |
.bar { | |
background-color: $primary-color; | |
width: 100%; | |
border-radius: 5px; | |
} | |
.foo { | |
background-color: lighten($primary-color, 10%); | |
padding: 5em; | |
width: 50%; | |
} | |
////////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 { | |
background-color: #fb445a; | |
width: 100%; | |
border-radius: 5px; | |
} | |
.foo { | |
background-color: #fc7686; | |
padding: 5em; | |
width: 50%; | |
} |
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
<div class="foo"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment