Sha256: add03f69b64ddb259095fb2cb017c6bc2852472c7c2af724775e6547557950eb

Contents?: true

Size: 485 Bytes

Versions: 1

Compression:

Stored size: 485 Bytes

Contents

/*
  These provide basic font stacks with fallbacks. You can add your own fonts to the stack
*/

@mixin sans-serif($prepend:false) {
	$list: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-family: join($prepend,$list,comma);
}

@mixin serif($prepend:false) {
	$list: "Georgia", Times New Roman, Times, sans-serif;
	font-family: join($prepend,$list,comma);
}

@mixin monospace($prepend:false) {
	$list: "Monaco", Courier New, monospace;
	font-family: join($prepend,$list,comma);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stitch-0.1.1 stylesheets/stitch/patterns/text/_font-stacks.scss