Sha256: cd38607e6f9b2989292f0d64d351c9feefd166ba1c118cd60420e79f8a2d9a67
Contents?: true
Size: 1.15 KB
Versions: 25
Compression:
Stored size: 1.15 KB
Contents
// Typography Mixin // ======================================== // Font Sizes @mixin s-giga{ @include rem(font-size, $s-giga); } @mixin s-mega{ @include rem(font-size, $s-mega); } @mixin s-alpha{ @include rem(font-size, $s-alpha); } @mixin s-bravo{ @include rem(font-size, $s-bravo); @include rem(line-height, $base-line-height); } @mixin s-charlie{ @include rem(font-size, $s-charlie); @include rem(line-height, $base-line-height); } @mixin s-delta{ @include rem(font-size, $s-delta); } @mixin s-echo{ @include rem(font-size, $s-echo); } @mixin s-foxtrot{ @include rem(font-size, $s-foxtrot); } @mixin s-golf{ @include rem(font-size, $s-golf); @include rem(line-height, $base-line-small); } @mixin s-hotel{ @include rem(font-size, $s-hotel); @include rem(line-height, $base-line-small); } // Font Styles @mixin font-type($type, $style, $weight){ font-family: $type; font-style: $style; font-weight: $weight; } // Text Shadow @mixin text-shadow($dim: 0 0 0 0, $color: $black-base){ -webkit-text-shadow: $dim $color; -moz-text-shadow: $dim $color; -o-text-shadow: $dim $color; text-shadow: $dim $color; }
Version data entries
25 entries across 25 versions & 1 rubygems