Created
December 29, 2014 16:35
-
-
Save felixmosh/1d490dd275a535f60945 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="org"> | |
org | |
</div> | |
<div class="mine"> | |
mine | |
</div> | |
<div class="target"> | |
target | |
</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
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
$org: #f14d4d; | |
$target: #be3f3f; | |
$mine: darken(adjust-saturation($org, -35%), 13%); | |
.org { | |
background-color: $org; | |
height: 40px; | |
} | |
.mine { | |
background-color: $mine; | |
height: 40px; | |
} | |
.target { | |
background-color: $target; | |
height: 40px; | |
} |
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
.org { | |
background-color: #f14d4d; | |
height: 40px; | |
} | |
.mine { | |
background-color: #bd3e3e; | |
height: 40px; | |
} | |
.target { | |
background-color: #be3f3f; | |
height: 40px; | |
} |
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="org"> | |
org | |
</div> | |
<div class="mine"> | |
mine | |
</div> | |
<div class="target"> | |
target | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment