css: add links colors

This commit is contained in:
bretello 2024-06-15 17:41:02 +02:00
parent bf3df212c4
commit adc59d1c09
Signed by: brethil
GPG Key ID: 876AAC6290170FE7

View File

@ -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 {