Created
June 17, 2014 11:16
-
-
Save ElmahdiMahmoud/9822903cdfdd6e2389e0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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