Created
August 18, 2015 03:16
-
-
Save afknapping/548324ba2a69e40b0c36 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="swatch swatch01">example text</div> | |
<div class="swatch swatch02">example text</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) | |
// ---- | |
$basecolor: #2ECC40; | |
$lightest: lighten($basecolor, 30); | |
.swatch01 { | |
background-color: $basecolor; | |
} | |
.swatch02 { | |
background-color: $lightest; | |
} | |
.swatch { | |
width: 5em; | |
height: 4em; | |
padding: 0.5em; | |
color: white; | |
} |
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
.swatch01 { | |
background-color: #2ECC40; | |
} | |
.swatch02 { | |
background-color: #a8ebaf; | |
} | |
.swatch { | |
width: 5em; | |
height: 4em; | |
padding: 0.5em; | |
color: white; | |
} |
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="swatch swatch01">example text</div> | |
<div class="swatch swatch02">example text</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment