Created
April 29, 2015 02:55
-
-
Save una/42e58bd4229ea2565bee 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
<ul> | |
<li class="dark"></li> | |
<li class="brand-dark"></li> | |
<li class="brand-color"></li> | |
<li class="brand-light"></li> | |
<li class="light"></li> | |
<li class="brand-secondary"></li> | |
</ul> |
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.13) | |
// Compass (v1.0.3) | |
// ---- | |
// color pallete | |
$white: #fff; | |
$brand-color: #88d9e6; | |
$brand-secondary: #8b8Bae; | |
$dark: #374b4a; | |
$brand-dark: mix($brand-color, $dark, 80%); | |
$brand-light: mix($brand-color, $white, 40%); | |
$brand-secondary: mix(invert($brand-color), $dark, 90%); | |
li { | |
display: inline-block; | |
width: 100px; | |
outline: 1px solid hotpink; | |
height:100px; | |
} | |
// variables | |
.dark { | |
background-color: $dark; | |
} | |
.brand-color { | |
background-color: $brand-color; | |
} | |
.brand-dark { | |
background-color: $brand-dark; | |
} | |
.brand-light { | |
background-color: $brand-light; | |
} | |
.brand-secondary { | |
background-color: $brand-secondary; | |
} |
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
li { | |
display: inline-block; | |
width: 100px; | |
outline: 1px solid hotpink; | |
height: 100px; | |
} | |
.dark { | |
background-color: #374b4a; | |
} | |
.brand-color { | |
background-color: #88d9e6; | |
} | |
.brand-dark { | |
background-color: #77bcc6; | |
} | |
.brand-light { | |
background-color: #cfeff5; | |
} | |
.brand-secondary { | |
background-color: #70291d; | |
} |
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
<ul> | |
<li class="dark"></li> | |
<li class="brand-dark"></li> | |
<li class="brand-color"></li> | |
<li class="brand-light"></li> | |
<li class="light"></li> | |
<li class="brand-secondary"></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment