Skip to content

Instantly share code, notes, and snippets.

@gabrielhpugliese
Created March 3, 2015 14:49
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 gabrielhpugliese/fa2f1efe763dc3872060 to your computer and use it in GitHub Desktop.
Save gabrielhpugliese/fa2f1efe763dc3872060 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
.btn { color: white;}
.btn-primary { color: blue; }
.btn-disabled { color: grey; }
.simple-form {
&__field-text {
margin-right: 1.05em;
}
&__input {
&[readonly] {
background-color: #E0E0E0;
}
}
&__submit-button {
@extend .btn;
@extend .btn-primary;
&--disabled {
@extend .btn-disabled;
}
}
}
.btn, .simple-form__submit-button {
color: white;
}
.btn-primary, .simple-form__submit-button {
color: blue;
}
.btn-disabled, .simple-form__submit-button--disabled {
color: grey;
}
.simple-form__field-text {
margin-right: 1.05em;
}
.simple-form__input[readonly] {
background-color: #E0E0E0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment