From f93672611155e3492014b8103ba5fe8b35488fe9 Mon Sep 17 00:00:00 2001
From: snipe <72265661+notsniped@users.noreply.github.com>
Date: Sun, 4 Dec 2022 13:10:48 +0530
Subject: [PATCH 1/2] Add Google fonts preconnects in html `
`
---
index.html | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/index.html b/index.html
index 6ad0296..4327386 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,11 @@
NKA Development Group
+
+
+
+
+
From 164ee49d297dd0fb0f062d346d5bc5107b33d97e Mon Sep 17 00:00:00 2001
From: snipe <72265661+notsniped@users.noreply.github.com>
Date: Sun, 4 Dec 2022 13:16:25 +0530
Subject: [PATCH 2/2] Implement use of new fonts in NKA Web stylesheet
---
style.css | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/style.css b/style.css
index b306e4d..164665f 100644
--- a/style.css
+++ b/style.css
@@ -2,8 +2,17 @@ body {
margin: 0px;
padding: 0px;
font-size: 18px;
+ font-family: 'Mulish', sans-serif;
}
+/* Custom Font Families:
+
+ font-family: 'Kenia', cursive;
+ font-family: 'Mulish', sans-serif;
+ font-family: 'Roboto Mono', monospace;
+
+*/
+
#top-nav-bar {
width: 100%;
padding-top: 15px;
@@ -18,6 +27,7 @@ body {
}
.top-nav-bar-title {
font-size: 27px;
+ font-family: 'Roboto Mono', monospace;
}
#top-info-card {
@@ -31,11 +41,13 @@ body {
box-shadow: 1px 0 10px 8px rgb(199, 199, 199);
}
.top-info-card-title {
- font-size: 55px;
- font-weight: bold;
+ font-size: 65px;
+ /* font-weight: bold; */
+ font-family: 'Kenia', cursive;
}
.top-info-card-description {
- font-size: 21px;
+ font-size: 23px;
+ font-family: 'Roboto Mono', monospace;
}
.content-container {
@@ -99,8 +111,10 @@ body {
border-radius: 8px;
box-shadow: 1px 0 10px 8px rgb(199, 199, 199);
font-size: 16px;
+ font-family: 'Roboto Mono', monospace;
}
.page-footer {
font-size: 14px;
+ font-family: 'Roboto Mono', monospace;
}