Sha256: 57e317408680b96acc2a637921091ad15134ff6eb3ffcf20807ac1ed79e7c58c

Contents?: true

Size: 486 Bytes

Versions: 12

Compression:

Stored size: 486 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

12 entries across 12 versions & 1 rubygems

Version Path
stitch-0.1.7.beta.3 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.7.beta.2 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.7.beta.1 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.6 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.5 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.4 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.4.beta.2 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.4.beta.1 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.3.2 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.3.1 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.3 stylesheets/stitch/patterns/text/_font-stacks.scss
stitch-0.1.2 stylesheets/stitch/patterns/text/_font-stacks.scss