Created
July 4, 2014 08:22
-
-
Save adamsir/2c7bef085fde2cfd7c3d 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
// ---- | |
// libsass (v2.0.0) | |
// ---- | |
@mixin list-map($list) { | |
@each $value in $list { | |
#{nth($value, 1)}: nth($value, 2); | |
} | |
} | |
$test-list: ( | |
font-size (22px 41px), | |
line-height 48px, | |
font-weight bold, | |
color #DD5E27, | |
margin (43px 0 16px 0), | |
width 29%, | |
float left, | |
text-transform uppercase, | |
text-align left | |
); | |
.test-list { | |
@include list-map($test-list); | |
} |
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
.test-list { | |
font-size: 22px 41px; | |
line-height: 48px; | |
font-weight: bold; | |
color: #DD5E27; | |
margin: 43px 0 16px 0; | |
width: 29%; | |
float: left; | |
text-transform: uppercase; | |
text-align: left; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment