Skip to content

Instantly share code, notes, and snippets.

@csswizardry
Created August 26, 2015 13:59
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 csswizardry/595c61aa5eda6090bdd8 to your computer and use it in GitHub Desktop.
Save csswizardry/595c61aa5eda6090bdd8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
// main.scss
$tabs-color: black;
$tabs-color-background: yellow;
$tabs-custom: (
font-size: 2em,
text-transform: uppercase,
);
// @import "components.tabs";
$tabs-color: white !default;
$tabs-color-background: red !default;
$tabs-custom: () !default;
.c-tabs {
margin: 0;
padding: 0;
list-style: none;
color: $tabs-color;
background-color: $tabs-color-background;
@each $property, $value in $tabs-custom {
#{$property}: $value;
}
}
.c-tabs {
margin: 0;
padding: 0;
list-style: none;
color: black;
background-color: yellow;
font-size: 2em;
text-transform: uppercase;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment