From a26bcacde8f855a6f59caf97831c5d9dfd052e1d Mon Sep 17 00:00:00 2001 From: Marco Kaiser Date: Sun, 17 Nov 2024 06:40:38 +0100 Subject: [PATCH] style: Remove unnecessary `.woff` file type Info: WOFF2 is supported in all major browsers since 2016 --- css/style.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/css/style.css b/css/style.css index e2ade45..57c7405 100644 --- a/css/style.css +++ b/css/style.css @@ -1,11 +1,10 @@ @font-face { -/* +/* Note: The font files are not included in this repository due to legal restrictions. For more information, please refer to the README.md file located in the 'fonts' directory. */ font-family: 'Departure Mono'; - src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'), - url('../fonts/DepartureMono-Regular.woff') format('woff'); + src: url('../fonts/DepartureMono-Regular.woff2') format('woff2'); font-weight: normal; font-style: normal; font-display: swap; @@ -540,4 +539,4 @@ a { a:hover { text-decoration: none; color: var(--cyber-secondary-color); -} \ No newline at end of file +}