Sha256: 5fe7ee9c451c5510800d128663ff9f230620e6834f41fe9d0990e1cc34da6583

Contents?: true

Size: 963 Bytes

Versions: 3

Compression:

Stored size: 963 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: block;
    font-style: #{$style};
    font-weight: 300;
    src: url("../fonts/ZillaSlab-Light#{$style-value}.woff2") format("woff2");
  }

  @each $weight, $weight-value in $weights {
    @font-face {
      font-family: "Inter";
      font-display: block;
      font-style: #{$style};
      font-weight: #{$weight-value};
      src: url("../fonts/Inter-#{$weight}#{$style-value}.woff2") format("woff2");
    }
  }
}

@font-face {
  font-family: "Inter";
  font-display: block;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-display: block;
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/Inter-Italic.woff2") format("woff2");
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-nagymaros-3.3.0 _sass/_fonts.scss
jekyll-nagymaros-3.2.0 _sass/_fonts.scss
jekyll-nagymaros-3.1.0 _sass/_fonts.scss