removed 'local' from font-face to fix issues on Firefox on Linux

This commit is contained in:
Jacob Haddon 2024-09-13 20:56:49 -04:00
parent 038bb5e641
commit 315d32dfea

View File

@ -11,21 +11,19 @@ Written by Jacob Haddon https://jacobhaddon.com
*/
@font-face {
font-family: "lora";
src: local("Lora"),
url("fonts/Lora/webfonts/Lora-Regular.woff2") format('woff2'),
url("fonts/Lora/variable/Lora-VariableFont_wght.ttf") format('truetype');
font-style: normal;
font-weight: normal;
font-family: "lora";
src: url("fonts/Lora/webfonts/Lora-Regular.woff2") format('woff2'),
url("fonts/Lora/variable/Lora-VariableFont_wght.ttf") format('truetype');
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "lora";
src: local("Lora"),
url("fonts/Lora/webfonts/Lora-Italic.woff2") format('woff2'),
url("fonts/Lora/variable/Lora-Italic-VariableFont_wght.ttf")format('truetype');
font-weight: normal;
font-style: italic;
font-family: "lora";
src: url("fonts/Lora/webfonts/Lora-Italic.woff2") format('woff2'),
url("fonts/Lora/variable/Lora-Italic-VariableFont_wght.ttf")format('truetype');
font-style: italic;
font-weight: normal;
}
body {