Sha256: b803a5ea9c8eef69d56610c7afef96f226b2141e26539776e0a636b28ead2ab5
Contents?: true
Size: 1.5 KB
Versions: 5
Compression:
Stored size: 1.5 KB
Contents
// Table of Contents // ================================================== // Font-face // Font-face // ================================================== @each $type, $families in $font-families { @if index(text-family($type), 'Branding') { @each $name, $weight in $font-weights { @font-face { font-display: swap; font-family: 'Branding'; font-style: normal; font-weight: $weight; src: url(font-path('branding/branding-#{$name}.woff')) format('woff'); } } } @if index(text-family($type), 'Blender Pro') { @each $name, $weight in $font-weights { @font-face { font-display: swap; font-family: 'Blender Pro'; font-style: normal; font-weight: $weight; src: url(font-path('blender-pro/blender-pro-#{$name}.woff')) format('woff'); } } } @if index(text-family($type), 'Fakt Pro') { @each $name, $weight in $font-weights { @font-face { font-display: swap; font-family: 'Fakt Pro'; font-style: normal; font-weight: $weight; src: url(font-path('fakt-pro/fakt-pro-#{$name}.woff')) format('woff'); } } } @if index(text-family($type), 'Fakt Soft Pro') { @each $name, $weight in $font-weights { @font-face { font-display: swap; font-family: 'Fakt Soft Pro'; font-style: normal; font-weight: $weight; src: url(font-path('fakt-soft-pro/fakt-soft-pro-#{$name}.woff')) format('woff'); } } } }
Version data entries
5 entries across 5 versions & 1 rubygems