Skip to content

Instantly share code, notes, and snippets.

@devbyray
Last active August 29, 2015 14:12
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 devbyray/7e434991ba8080af35c5 to your computer and use it in GitHub Desktop.
Save devbyray/7e434991ba8080af35c5 to your computer and use it in GitHub Desktop.
Sass more variables
.element {
font-family: Helvetica, Arial;
color: #ffffff;
background-color: #000000;
border: 1px dashed grey;
}
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$black: #000000;
$white: #ffffff;
$grey: grey;
$default_margin: 1em;
$default_border_style: 1px dashed $grey;
$default_font_style: Helvetica, Arial;
.element {
font-family: $default_font_style;
color: $white;
background-color: $black;
border: $default_border_style;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment