From adc59d1c09f37ec5897c38ceb3a144b8b4d3aa01 Mon Sep 17 00:00:00 2001 From: bretello Date: Sat, 15 Jun 2024 17:41:02 +0200 Subject: [PATCH] css: add links colors --- static/style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/static/style.css b/static/style.css index c44ca90..ea46719 100644 --- a/static/style.css +++ b/static/style.css @@ -17,6 +17,22 @@ body { body { background-color: #556262; } + + a:link { + color: orange; /* unvisited link */ + } + + a:visited { + color: red; /* visited link */ + } + + a:hover { + color: white; /* mouse over link */ + } + + a:active { + color: yellow; /* selected link */ + } } #main {