From ae892fd2fc629e8703b0f8e97431d210ca39843a Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Sun, 18 Jun 2023 20:02:01 +0400 Subject: [PATCH] Font size for headings --- src/layouts/Layout.astro | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index a177dc0..cac99d1 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -73,7 +73,16 @@ const { title, description } = Astro.props; font-weight: 500; } } - h1 { font-size: 2.4rem; } + + h1 { font-size: 2.50rem; } + h2 { font-size: 2.00rem; } + h3 { font-size: 1.75rem; } + h4 { font-size: 1.40rem; } + h5 { font-size: 1.20rem; } + h6 { + color: var(--fg-sec); + font-size: 1.1rem; + } a, .link { color: var(--accent-fg);