From 492b46d75ea3fd1191f334e8a2ab6a4a2c8a7882 Mon Sep 17 00:00:00 2001 From: iacore Date: Sat, 11 May 2024 14:12:43 +0000 Subject: [PATCH] decrease h1-h6 font size --- views/css/style.css | 24 ++++++++++++++++++++++++ views/css/style.scss | 7 +++++++ 2 files changed, 31 insertions(+) diff --git a/views/css/style.css b/views/css/style.css index b17fd43..c47b6f1 100644 --- a/views/css/style.css +++ b/views/css/style.css @@ -115,6 +115,30 @@ h1, h2, h3, h4, h5, h6 { margin-block-end: 0.5em; } +h1 { + font-size: 1.5em; +} + +h2 { + font-size: 1.17em; +} + +h3 { + font-size: 1em; +} + +h4 { + font-size: 0.83em; +} + +h5 { + font-size: 0.67em; +} + +h6 { + font-size: 0.5em; +} + a { color: #118bee; text-decoration: none; diff --git a/views/css/style.scss b/views/css/style.scss index 038e728..48e6c93 100644 --- a/views/css/style.scss +++ b/views/css/style.scss @@ -152,6 +152,13 @@ h1,h2,h3,h4,h5,h6 { margin-block-end: 0.5em; } +h1 { font-size: 1.5em; } +h2 { font-size: 1.17em; } +h3 { font-size: 1em; } +h4 { font-size: 0.83em; } +h5 { font-size: 0.67em; } +h6 { font-size: 0.50em; } + a { color: $link; text-decoration: none;