Skip to content

Instantly share code, notes, and snippets.

@alxjrvs
Created October 8, 2014 02:11
Show Gist options
  • Save alxjrvs/f61022c3fc89eadfde14 to your computer and use it in GitHub Desktop.
Save alxjrvs/f61022c3fc89eadfde14 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.button
Click
.button--error
Error
.button--success
Success
.button--pending
Pending
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
//!default
//!default is the opposite of !important, but for variables.
//When assigning a variable, you can flag it as !default.
//Normal Variables
//$background-color: red;
//Default values
$background-color: blue !default;
//More Normal values
//$background-color: green;
body {
background-color: $background-color;
}
body {
background-color: blue;
}
.button
Click
.button--error
Error
.button--success
Success
.button--pending
Pending
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment