Skip to content

Instantly share code, notes, and snippets.

@ElmahdiMahmoud
Created June 17, 2014 11:16
Show Gist options
  • Save ElmahdiMahmoud/9822903cdfdd6e2389e0 to your computer and use it in GitHub Desktop.
Save ElmahdiMahmoud/9822903cdfdd6e2389e0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----
$fw: null !default;
$fs: null !default;
$lh: null !default;
$ff: null !default;
@mixin font-variant($fw: $font-weight, $fs: $font-size, $lh: $line-height, $ff: $font-family){
font: $fw #{$fs}/#{$lh} $ff;
}
// @include font-variant($fw, $fs, $lh, $ff);
$font-family-base: arial, sans-seif !default;
$font-size-base : 13px !default;
$line-height-base: 1.5 !default;
$font-weight-base: normal !default;
%font-style-base {
@include font-variant($font-weight-base, $font-size-base, $line-height-base, $font-family-base);
}
body {
@extend %font-style-base;
}
body {
font: normal 13px/1.5 arial, sans-seif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment