Skip to content

Instantly share code, notes, and snippets.

@shadcn
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shadcn/c1d13ee313b0949a83da to your computer and use it in GitHub Desktop.
Save shadcn/c1d13ee313b0949a83da to your computer and use it in GitHub Desktop.
font-face for Radix
// Font faces
// --------------------------------------------------
@import "compass/css3/font-face";
$font-faces: ('GothamRnd-Medium', 'GothamRnd-Book');
@each $font-face in $font-faces {
@include font-face(
'#{$font-face}',
font-files(
"#{$font-face}.woff", woff,
"#{$font-face}.ttf", truetype,
"#{$font-face}.svg", svg),
'#{$font-face}.eot',
normal,
normal);
.#{$font-face} {
font-family: "#{$font-face}";
}
}
@shadcn
Copy link
Author

shadcn commented May 1, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment