Created
May 4, 2015 12:39
-
-
Save edbentinck/487fbee21edceb11f7e9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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