Skip to content

Instantly share code, notes, and snippets.

@csswizardry
Created December 10, 2014 18:37
Show Gist options
  • Save csswizardry/b996ffd7f5d0045a7dee to your computer and use it in GitHub Desktop.
Save csswizardry/b996ffd7f5d0045a7dee to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<section class="foo">
foo
</section>
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
$btn-color: #fff;
$btn-color-background: #2BDE73;
$btn-padding: 3px;
// @import "
// btn.scss
$btn-color: red !default;
$btn-color-background: orange !default;
$btn-padding: $base-spacing-unit !default;
.btn {
color: $btn-color;
background-color: $btn-color-background;
padding: $btn-padding;
}
// ";
.btn {
color: #fff;
background-color: #2BDE73;
padding: 3px;
}
<section class="foo">
foo
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment