Files
com.xaymar.www/assets/fonts.scss
T

85 lines
2.5 KiB
SCSS
Raw Normal View History

2022-03-09 10:41:02 +01:00
---
fonts:
- family: "Oswald"
styles:
- weight: "normal"
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Oswald-VariableFont_wght.ttf"
- weight: 200
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Oswald-ExtraLight.ttf"
- weight: 300
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Oswald-Light.ttf"
- weight: 400
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Oswald-Regular.ttf"
- weight: 500
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Oswald-Medium.ttf"
- weight: 600
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Oswald-SemiBold.ttf"
- weight: 700
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Oswald-Bold.ttf"
- family: "Roboto"
styles:
- weight: 100
style: normal
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-Thin.ttf"
- weight: 100
style: oblique
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-ThinItalic.ttf"
- weight: 300
style: normal
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-Light.ttf"
- weight: 300
style: oblique
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-LightItalic.ttf"
- weight: 400
style: normal
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-Regular.ttf"
- weight: 400
style: oblique
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-25 16:25:55 +01:00
url: "assets/fonts/Roboto-Italic.ttf"
2022-03-09 10:41:02 +01:00
- weight: 500
style: normal
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-Medium.ttf"
- weight: 500
style: oblique
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-MediumItalic.ttf"
- weight: 700
style: normal
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-Bold.ttf"
- weight: 700
style: oblique
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-BoldItalic.ttf"
- weight: 900
style: normal
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-Black.ttf"
- weight: 900
style: oblique
2022-03-09 11:20:15 +01:00
format: "truetype"
2022-03-09 10:41:02 +01:00
url: "assets/fonts/Roboto-BlackItalic.ttf"
---
{% for font in page.fonts %}{% for style in font.styles %}@font-face {
2023-04-03 22:36:53 +02:00
font-family: "{{ font.family }}";
2022-11-27 06:03:45 +01:00
src: url("{{ style.url | absolute_url }}"){% if style.format %} format("{{ style.format }}"){% endif %};
2023-04-03 22:36:53 +02:00
{% if style.weight %} font-weight: {{ style.weight }};{% endif %}
{% if style.style %} font-style: {{ style.style}};{% endif %}
2023-04-03 22:44:55 +02:00
font-display: swap;
2022-03-09 10:41:02 +01:00
}
{% endfor %}{% endfor %}