Sha256: 70018a92f791f01fa81a88e2b458b8e54b47a2723d7d2d144b0996521da67da1
Contents?: true
Size: 422 Bytes
Versions: 1
Compression:
Stored size: 422 Bytes
Contents
/* These provide basic font stacks with fallbacks. You can add your own fonts to the stack */ @mixin sans-serif($prepend:false) { font-family: join($prepend,"Helvetica Neue", Helvetica, Arial, sans-serif); } @mixin serif($prepend:false) { font-family: join($prepend,"Georgia", Times New Roman, Times, sans-serif); } @mixin monospace($prepend:false) { font-family: join($prepend,"Monaco", Courier New, monospace); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stitch-0.1.0 | stylesheets/stitch/patterns/text/_font-stacks.scss |