Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@IsaKiko
Created March 26, 2015 00:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IsaKiko/b7e43dd71b7a38a89e0f to your computer and use it in GitHub Desktop.
Save IsaKiko/b7e43dd71b7a38a89e0f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="block"><h1>hi</h1></div>
<div class="block-blue"><h1>hi</h1></div>
// ----
// 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);
}
.body {
color: #000;
}
.body .title {
font-size: 3em;
}
.body .title:hover {
text-decoration: underline;
}
.block {
background: #999999;
}
.block-blue {
background: white;
}
<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