From 67feea33bff8429ccfdf373a6259089944f82a58 Mon Sep 17 00:00:00 2001 From: Kaisaan <34224128+Kaisaan@users.noreply.github.com> Date: Fri, 14 Oct 2022 23:20:06 -0400 Subject: [PATCH] change link colours --- css/style.css | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index cdf4d3d..8ace373 100644 --- a/css/style.css +++ b/css/style.css @@ -39,13 +39,33 @@ h1 { margin-bottom: 0px; } + /* unvisited link */ + a:link { + color: #66ff00; + } + + /* visited link */ + a:visited { + color: #1a940d; + } + + /* mouse over link */ + a:hover { + color: #66ff00; + } + + /* selected link */ + a:active { + color: #1a940d; + } + .navbar ul { font-size: 1rem; list-style-type: none; margin: 0; padding: 0; overflow: hidden; - background-color: #259441; + background-color: #1a940d; font-family: 'MMRock9', monospace; }