Sha256: c7d0815ef0a262d95102676d9d2a5f96f336f1e9c12f8acadfe980475a6ebae6
Contents?: true
Size: 1018 Bytes
Versions: 36
Compression:
Stored size: 1018 Bytes
Contents
// Table of Contents // ================================================== // Font-face // Font-face // ================================================== @each $type, $families in $font-families { @each $file-name, $family in $font-available-typography { @if index(text-family($type), $family) { @each $name, $weight in $font-weights { @font-face { font-display: swap; font-family: $family; font-style: normal; font-weight: $weight; src: url(font-path('#{$file-name}/#{$file-name}-#{$name}.woff')) format('woff'); } } } } } @each $file-name, $family in $font-available-typography { @if index(text-family(display), $family) { @each $name, $weight in (bold: 700, normal: 400) { @font-face { font-display: swap; font-family: $family; font-style: normal; font-weight: $weight; src: url(font-path('#{$file-name}/#{$file-name}-#{$name}.woff')) format('woff'); } } } }
Version data entries
36 entries across 36 versions & 1 rubygems