From 491d0698424923f79ff30108a52f43a785c25858 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
Date: Sat, 21 Oct 2023 17:15:03 -0400
Subject: [PATCH] Fixed the fancy quote font and reduce heading in cards to h4

---
 layouts/shortcodes/card.html | 2 +-
 static/css/main.css          | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/layouts/shortcodes/card.html b/layouts/shortcodes/card.html
index b58f35113..3a3c4b7f4 100644
--- a/layouts/shortcodes/card.html
+++ b/layouts/shortcodes/card.html
@@ -9,7 +9,7 @@ inner: description
 <div class="col">
   <a class="card" {{ if .Get 1 }}href="{{ .Get 1 }}"{{ end }}>
     <div class="card__body">
-      <h3 style="margin:0;text-transform:capitalize">{{ .Get 0 }}</h3>
+      <h4 style="margin:0;text-transform:capitalize">{{ .Get 0 }}</h4>
       <small>{{ .Inner }}</small>
     </div>
     {{- if (or (.Get 2) (.Get 3) )}}
diff --git a/static/css/main.css b/static/css/main.css
index 7a63e1a12..dd3522c77 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -2245,8 +2245,7 @@ div#ch-tooltip {
 }
 
 .quote-box > blockquote {
-	font-weight: 100;
-	font-size: 2rem;
+	font-size: 1.5rem;
 	max-width: 600px;
 	line-height: 1.4;
 	position: relative;
-- 
GitLab