From d7f457b321e24cf33dae47681889c87cd2677226 Mon Sep 17 00:00:00 2001 From: Primrose Date: Mon, 28 Aug 2023 19:42:00 -0400 Subject: [PATCH] Attempt to fix font definitions in main_theme.css --- main_theme.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main_theme.css b/main_theme.css index 168e863..3f130b1 100644 --- a/main_theme.css +++ b/main_theme.css @@ -2,27 +2,27 @@ /* This CSS document is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. Get a copy of the license at https://creativecommons.org/licenses/by-sa/4.0/legalcode */ -.font-light { +@font-face { font-family: quicksand-light; src: url(./assets/fonts/Quicksand-Light.ttf) } -.font-regular { +@font-face { font-family: quicksand-regular; src: url(./assets/fonts/Quicksand-Regular.ttf) } -.font-medium { +@font-face { font-family: quicksand-medium; src: url(./assets/fonts/Quicksand-Medium.ttf) } -.font-semibold { +@font-face { font-family: quicksand-semibold; src: url(./assets/fonts/Quicksand-SemiBold.ttf) } -.font-bold { +@font-face { font-family: quicksand-bold; src: url(./assets/fonts/Quicksand-Bold.ttf) }