Skip to content

Instantly share code, notes, and snippets.

@loadedsith
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loadedsith/2c17c47140f28247f653 to your computer and use it in GitHub Desktop.
Save loadedsith/2c17c47140f28247f653 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$ru: (
name: 'ru',
font-size: 12px,
font-family: "Helvetica",
letter-spacing: 1px
);
$cn: (
name:'cn',
font-size:12px,
font-family:"Times Roman",
letter-spacing:-1px
);
@mixin test ($list){
html[lang=#{map-get(nth($list, 1),name)}] & {
font-size: map-get(nth($list, 1), font-size);
}
}
.bygph {
@include test( ($ru, $cn) );
}
html[lang=ru] .bygph {
font-size: 12px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment