Forked from nicbarajas/SassMeister-input-HTML.html
Last active
August 29, 2015 14:23
-
-
Save clintfisher/3dd6d8efa0e3d24873c5 to your computer and use it in GitHub Desktop.
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