From 8b0b63d4b1fa74af3ca14338e22b2725f2bc4d56 Mon Sep 17 00:00:00 2001
From: thinkpadmaster <a.scerba02@gmail.com>
Date: Wed, 5 Jul 2023 16:24:01 -0500
Subject: Move to local fonts

---
 data/static/style.css | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

(limited to 'data/static')

diff --git a/data/static/style.css b/data/static/style.css
index 397684c..0a00771 100644
--- a/data/static/style.css
+++ b/data/static/style.css
@@ -1,3 +1,17 @@
+@font-face {
+  font-family: 'DejaVu Sans';
+  src: url('/static/dejavu-sans-fontfacekit/web fonts/dejavu_regular_macroman/DejaVuSans-webfont.woff') format('woff');
+  font-weight: normal;
+  font-style: normal;
+}
+
+@font-face {
+  font-family: 'DejaVu Sans';
+  src: url('/static/dejavu-sans-fontfacekit/web fonts/dejavu_extralight_macroman/DejaVuSans-ExtraLight-webfont.woff') format('woff');
+  font-weight: lighter;
+  font-style: normal;
+}
+
 * {
   box-sizing: border-box;
 }
@@ -24,7 +38,7 @@ body {
   background-attachment: fixed;
   background-position: top center;
   background-color: var(--primary-color);
-  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
+  font-family: 'DejaVu Sans', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
 }
 
 .imgGrid {
@@ -51,7 +65,7 @@ nav {
 
 nav a {
   font-size: 28px;
-  font-weight: 100;
+  font-weight: lighter;
   color: var(--accent-color);
   text-decoration: none;
 }
-- 
cgit v1.2.3