Sha256: 51d338c7053ad94bef1a11c5b640cf4d60247bdc10a50be3df9054b3a1313f1c
Contents?: true
Size: 906 Bytes
Versions: 7
Compression:
Stored size: 906 Bytes
Contents
// Compass imports //------------------------------------------------ @import compass/css3 @import compass/utilities // Font stack //------------------------------------------------ @mixin HelveticaFontStack font-family: $helvetica-font-stack // Font size mixin to include px and rem //------------------------------------------------ @mixin font-size($size, $is-important: false) @if $is-important font-size: $size + px !important font-size: ($size / 10) + rem !important @else font-size: $size + px font-size: ($size / 10) + rem // WebKit font-smoothing //------------------------------------------------ // References: // // 1. http://maxvoltar.com/sandbox/fontsmoothing/ // 2. http://maxvoltar.com/archive/-webkit-font-smoothing // // Values: none, antialiased (default), subpixel-antialiased // @mixin font-smoothing($value: antialiased) -webkit-font-smoothing: $value
Version data entries
7 entries across 7 versions & 1 rubygems