From d373971644d6c689c86d022855ab994a8a371d50 Mon Sep 17 00:00:00 2001 From: jolzem Date: Tue, 29 Aug 2023 18:46:06 +0200 Subject: [PATCH] fixed font, moved to single quotes in css file --- css/style.css | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/css/style.css b/css/style.css index 23f074e..b2e8b8e 100755 --- a/css/style.css +++ b/css/style.css @@ -1,19 +1,18 @@ - @font-face { - font-family: "DM Mono"; - src: url("DMMono-Regular.woff2"); + font-family: 'DM Mono'; + src: url('DMMono-Regular.woff2'); font-weight: normal; } @font-face { - font-family: "DM Mono"; - src: url("DMMono-Medium.woff2"); + font-family: 'DM Mono'; + src: url('DMMono-Medium.woff2'); font-weight: bold; } @font-face { - font-family: "DM Mono"; - src: url("DMMono-Italic.woff2"); + font-family: 'DM Mono'; + src: url('DMMono-Italic.woff2'); font-style: italic; } @@ -24,7 +23,7 @@ --border: #76818e; --border-light: #a0a8b1; --green: #5da892; - --font-body: "DM Mono", "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif; + --font-body: 'DM Mono', 'Lucida Console', 'Monaco', 'Courier New', 'Courier', monospace; } body {