Skip to content

Instantly share code, notes, and snippets.

@adamsir
Created July 4, 2014 08:22
Show Gist options
  • Save adamsir/2c7bef085fde2cfd7c3d to your computer and use it in GitHub Desktop.
Save adamsir/2c7bef085fde2cfd7c3d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
.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