Skip to content

Instantly share code, notes, and snippets.

@woohling
Created May 13, 2015 15:08
Show Gist options
  • Save woohling/9cc68f3138ad30224d37 to your computer and use it in GitHub Desktop.
Save woohling/9cc68f3138ad30224d37 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class='orange'></div>
<div class='red'></div>
<div class='blue'></div>
<div class='green'></div>
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
$color: #ed2;
@function pxify($value) {
@return unquote($value + 'px')
}
div {
width: 100px;
height: 100px;
border: 1px solid black;
}
.orange {
background-color: $color;
}
.red {
background: red;
width: pxify(red($color));
float: left;
}
.green {
background: green;
width: pxify(green($color));
float: left;
}
.blue {
background: blue;
width: pxify(blue($color));
float: left;
}
div {
width: 100px;
height: 100px;
border: 1px solid black;
}
.orange {
background-color: #ed2;
}
.red {
background: red;
width: 238px;
float: left;
}
.green {
background: green;
width: 221px;
float: left;
}
.blue {
background: blue;
width: 34px;
float: left;
}
<div class='orange'></div>
<div class='red'></div>
<div class='blue'></div>
<div class='green'></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment