Sha256: 97da8d46b6d708481497caf7f2a47a006392171afadf49d3828835e1ba192554
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
// FONTS // -------------------------------------------------- $georgia: Georgia, Cambria, "Times New Roman", Times, serif; $helvetica: "Helvetica Neue", Helvetica, Arial, sans-serif; $lucida-grande: "Lucida Grande", Tahoma, Verdana, Arial, sans-serif; $verdana: Verdana, Geneva, sans-serif; $menlo: Menlo, Monaco, "Courier New", monospace; // Font Stacks @mixin font-shorthand($size: $baseFontSize, $weight: normal, $lineHeight: $baseLineHeight) { font-size: $size; font-weight: $weight; line-height: $lineHeight; } @mixin font-serif($size: $baseFontSize, $weight: normal, $lineHeight: $baseLineHeight) { font-family: $georgia; @include font-shorthand($size, $weight, $lineHeight); } @mixin font-sans-serif($size: $baseFontSize, $weight: normal, $lineHeight: $baseLineHeight) { font-family: $helvetica; @include font-shorthand($size, $weight, $lineHeight); } @mixin font-family-monospace { font-family: $menlo; } @mixin font-monospace($size: $baseFontSize, $weight: normal, $lineHeight: $baseLineHeight) { @include font-family-monospace; @include font-shorthand($size, $weight, $lineHeight); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
app_sleuth-0.0.1.pre | lib/app_sleuth/server/assets/sass/mixins/addons/_font-family.scss |