Created
March 20, 2015 22:14
-
-
Save nicbarajas/8c43b18d2609bc6a34a8 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 id="box">Hello!</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) | |
// ---- | |
$black: #000; | |
@function gray($value) { | |
@return lighten($black, $value); | |
} | |
#box { | |
width: 200px; | |
height: 200px; | |
color: gray(92); | |
background-color: gray(20); | |
border-color: gray(26.5); | |
} |
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 { | |
width: 200px; | |
height: 200px; | |
color: #ebebeb; | |
background-color: #333333; | |
border-color: #444444; | |
} |
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 id="box">Hello!</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment