Skip to content

Instantly share code, notes, and snippets.

@cycold
Created July 31, 2014 09:04
Show Gist options
  • Save cycold/e6cb3b9662316baf7658 to your computer and use it in GitHub Desktop.
Save cycold/e6cb3b9662316baf7658 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.12)
// Compass (v1.0.0.alpha.21)
// ----
$list:#111,#222,#333;
@function pxToem($px,$base:16){
@return ( $px / $base ) * 1em
};
div{
width:percentage(20px/20px);
height:20*20px;
min-width:length($list);
color:nth($list,2);
line-height: pxToem(20);
}
div {
width: 100%;
height: 400px;
min-width: 3;
color: #222222;
line-height: 1.25em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment