Skip to content

Instantly share code, notes, and snippets.

@hellobrian
Last active October 29, 2015 17:38
Show Gist options
  • Select an option

  • Save hellobrian/a305980185a997b3c9b7 to your computer and use it in GitHub Desktop.

Select an option

Save hellobrian/a305980185a997b3c9b7 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
%color {
color: white;
&__blue {
color: blue;
}
}
%card-list {
@extend %color;
list-style-type: none;
&__card {
@extend %color__blue;
display: inline-block;
width: em(245px);
height: em(250px);
}
}
.card-list {
@extend %card-list;
&__card {
@extend %card-list__card;
}
}
.card-list {
color: white;
}
.card-list__card {
color: blue;
}
.card-list {
list-style-type: none;
}
.card-list__card {
display: inline-block;
width: em(245px);
height: em(250px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment