Skip to content

Instantly share code, notes, and snippets.

@nicbarajas
Created October 23, 2014 16:57
Show Gist options
  • Save nicbarajas/e32382aba47461c9128b to your computer and use it in GitHub Desktop.
Save nicbarajas/e32382aba47461c9128b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div id="box"></div>
<div id="box-2"></div>
// ----
// Sass (v3.4.6)
// Compass (v1.0.1)
// ----
$black: #000;
// $gray: #000;
$gray-20: lighten($black, 20%);
$blue: #004276;
// $blue-10: lighten($blue, 10%);
$blue-20: tint($blue, 20);
div {
display: inline-block;
}
*+* {
margin-left: 20px;
}
#box {
height: 200px;
width: 200px;
background-color: $blue-20;
}
#box-2 {
height: 200px;
width: 200px;
background-color: $gray-20;
}
div {
display: inline-block;
}
* + * {
margin-left: 20px;
}
#box {
height: 200px;
width: 200px;
background-color: #336791;
}
#box-2 {
height: 200px;
width: 200px;
background-color: #333333;
}
<div id="box"></div>
<div id="box-2"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment