Sha256: 3f8ef913282eff340837f863fdd86152ef856af098558021953c43f14f96d5a6
Contents?: true
Size: 971 Bytes
Versions: 6
Compression:
Stored size: 971 Bytes
Contents
$weights: ( "Light": 300, "Medium": 500, "Bold": 700, ); $styles: ( normal: "", italic: "Italic", ); @each $style, $style-value in $styles { @font-face { font-family: "Zilla Slab"; font-display: swap; font-style: #{$style}; font-weight: 300; src: url("../webfonts/ZillaSlab-Light#{$style-value}.woff2") format("woff2"); } @each $weight, $weight-value in $weights { @font-face { font-family: "Inter"; font-display: swap; font-style: #{$style}; font-weight: #{$weight-value}; src: url("../webfonts/Inter-#{$weight}#{$style-value}.woff2") format("woff2"); } } } @font-face { font-family: "Inter"; font-display: swap; font-style: normal; font-weight: 400; src: url("../webfonts/Inter-Regular.woff2") format("woff2"); } @font-face { font-family: "Inter"; font-display: swap; font-style: italic; font-weight: 400; src: url("../webfonts/Inter-Italic.woff2") format("woff2"); }
Version data entries
6 entries across 6 versions & 1 rubygems