Skip to content

Instantly share code, notes, and snippets.

@edbentinck
Created May 4, 2015 12:39
Show Gist options
  • Save edbentinck/487fbee21edceb11f7e9 to your computer and use it in GitHub Desktop.
Save edbentinck/487fbee21edceb11f7e9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----
.form {
color: black;
&__label { font-weight: bold; }
&__input {
display: block;
height: 34px;
padding: 6px 12px;
font-size: 14px;
color: #555;
// more styles
}
}
.form--participate {
color: red;
// any style modifications can go right inside this block
.form {
&__label { font-weight: normal; }
&__input { height: 40px; }
}
}
.form {
color: black;
}
.form__label {
font-weight: bold;
}
.form__input {
display: block;
height: 34px;
padding: 6px 12px;
font-size: 14px;
color: #555;
}
.form--participate {
color: red;
}
.form--participate .form__label {
font-weight: normal;
}
.form--participate .form__input {
height: 40px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment