Skip to content

Instantly share code, notes, and snippets.

@mgreich
Created January 23, 2016 00:18
Show Gist options
  • Save mgreich/f047fd32cb9c4622fbaa to your computer and use it in GitHub Desktop.
Save mgreich/f047fd32cb9c4622fbaa to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
// measurements.scss
$radius: 5px;
// fonts.scss
$fontWeight--bold: 700;
// widget.scss
.widget {
$backgroundColor: #fff;
$borderRadius: $radius;
$color: #000;
$color--fancy: #d24dc4;
color: $color;
background-color: $backgroundColor;
border-radius: $borderRadius;
&__title {
font-weight: $fontWeight--bold;
}
&--fancy {
color: $color--fancy;
}
}
.widget {
color: #000;
background-color: #fff;
border-radius: 5px;
}
.widget__title {
font-weight: 700;
}
.widget--fancy {
color: #d24dc4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment