From e486e0bcc1b7d9b4aa3c6292200e734e3a88e0da Mon Sep 17 00:00:00 2001 From: zepp Date: Fri, 13 Dec 2024 16:30:03 -0500 Subject: [PATCH] styling anchor tags --- style/style.css | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/style/style.css b/style/style.css index 45e6406..f669019 100644 --- a/style/style.css +++ b/style/style.css @@ -39,7 +39,9 @@ main { background-color: var(--background-color); height: 100%; width: 60vw; - overflow: scroll; + overflow: auto; + scrollbar-width: thin; + scrollbar-color: #ffcab0 rgba(0, 0, 0, 0.1); grid-column: 2/3; grid-row: 2/3; } @@ -88,6 +90,21 @@ section { width: 55vw; } +a { + color: #6e5773; + text-decoration: none; +} + +a:visited { + color: #9a47cb; +} + +a:hover { + color: #4f323b; + text-decoration: underline; +} + .status { height: 120px; } +