Skip to content

Instantly share code, notes, and snippets.

@metamn
Created May 15, 2015 16:15
Show Gist options
  • Save metamn/9abbea7be14ceb36f40b to your computer and use it in GitHub Desktop.
Save metamn/9abbea7be14ceb36f40b to your computer and use it in GitHub Desktop.
Fonts SCSS
// The font mixin
@mixin font($variant) {
@if ($variant == 'nimbus-sans-regular') {
font-family: 'nimbus-sans', sans-serif;
font-weight: 400;
font-style: normal;
}
@if ($variant == 'nimbus-sans-bold') {
font-family: 'nimbus-sans', sans-serif;
font-weight: 700;
font-style: normal;
}
@if ($variant == 'silkscreen-regular') {
font-family: 'silkscreen', sans-serif;
font-weight: 400;
font-style: normal;
}
}
// Font classes
.nimbus-sans-regular {
font-family: 'nimbus-sans', sans-serif;
font-weight: 400;
font-style: normal;
}
.nimbus-sans-bold {
font-family: 'nimbus-sans', sans-serif;
font-weight: 700;
font-style: normal;
}
.silkscreen-regular {
font-family: 'silkscreen', sans-serif;
font-weight: 400;
font-style: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment