From 0289a94102ba93bec7044ca3ced77d5616325bda Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 29 Aug 2023 21:46:59 -0500 Subject: [PATCH] feat: improve anchor and header styling --- assets/style/style.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/assets/style/style.css b/assets/style/style.css index 3c30317..7bb10f2 100644 --- a/assets/style/style.css +++ b/assets/style/style.css @@ -193,6 +193,14 @@ img { border-radius: 15px; } +.anchor { + text-decoration: none; +} + +.anchor:visited, .anchor:link, .anchor:active { + color: var(--boatYellow2) +} + h1, h2, h3, @@ -205,6 +213,30 @@ h6 { margin-bottom: 5px; } +h1 { + font-size: 1.8rem; +} + +h2 { + font-size: 1.5rem; +} + +h3 { + font-size: 1.4rem; +} + +h4 { + font-size: 1.3rem; +} + +h5 { + font-size: 1.2rem; +} + +h6 { + font-size: 1.1rem; +} + a:link { color: var(--crystalBlue); }