Created
July 31, 2014 09:04
-
-
Save cycold/e6cb3b9662316baf7658 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
// ---- | |
// 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); | |
} | |
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 { | |
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