Skip to content

Instantly share code, notes, and snippets.

@danielpsf
Created August 5, 2015 16:27
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 danielpsf/cf17918c3410a8252a9d to your computer and use it in GitHub Desktop.
Save danielpsf/cf17918c3410a8252a9d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
//Variables
$default-font-color: red;
$default-width: 10px;
$title-font-color: blue;
//Mixins (functions)
@mixin formatTitle($font-size, $font-color, $font) {
font: $font-size $font;
color: $font-color;
}
h1 {
@include formatTitle(12px, $title-font-color, Arial);
span {
color: $default-font-color;
width: $default-width;
}
}
h1 {
font: 12px Arial;
color: blue;
}
h1 span {
color: red;
width: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment