From ccf9cdd9cd2c34a436b8967dfc3cefa7cc4f4313 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 26 May 2025 20:46:34 -0400 Subject: [PATCH] Add Crimson Text font family to loading states and inputs --- kjvstudy_org/static/style.css | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/kjvstudy_org/static/style.css b/kjvstudy_org/static/style.css index e2974a0..1928d04 100644 --- a/kjvstudy_org/static/style.css +++ b/kjvstudy_org/static/style.css @@ -615,6 +615,7 @@ div { display: flex; align-items: center; justify-content: center; + font-family: 'Crimson Text', 'Times New Roman', serif; } /* Tablet-specific styles */ @@ -932,12 +933,13 @@ div { } /* Prevent zoom on form inputs */ - input[type="text"], - input[type="search"], + input[type="text"], + input[type="search"], textarea { - font-size: 16px; - -webkit-appearance: none; - border-radius: var(--radius-md); + font-size: 16px; + -webkit-appearance: none; + border-radius: var(--radius-md); + font-family: 'Crimson Text', 'Times New Roman', serif !important; } /* Improve readability on mobile */ @@ -981,11 +983,12 @@ div { /* Loading and States */ .loading { - display: flex; - align-items: center; - justify-content: center; - padding: 3rem; - color: var(--text-muted); + display: flex; + align-items: center; + justify-content: center; + padding: 3rem; + color: var(--text-muted); + font-family: 'Crimson Text', 'Times New Roman', serif; } .spinner {