Created
March 26, 2015 00:15
-
-
Save IsaKiko/b7e43dd71b7a38a89e0f 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 class="block"><h1>hi</h1></div> | |
<div class="block-blue"><h1>hi</h1></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) | |
// ---- | |
$primary-color: #000; | |
.body { | |
color: $primary-color; | |
.title { | |
font-size: 3em; | |
&:hover { | |
text-decoration: underline; | |
} | |
} | |
} | |
@mixin solidblock($bg){ | |
// background: $bg; | |
background: mix($bg, #fff, 40%); | |
} | |
.block { | |
@include solidblock(#000); | |
} | |
.block-blue { | |
@include solidblock(#fff); | |
} |
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
.body { | |
color: #000; | |
} | |
.body .title { | |
font-size: 3em; | |
} | |
.body .title:hover { | |
text-decoration: underline; | |
} | |
.block { | |
background: #999999; | |
} | |
.block-blue { | |
background: white; | |
} |
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 class="block"><h1>hi</h1></div> | |
<div class="block-blue"><h1>hi</h1></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment