Improve body link behaviour.

This commit is contained in:
inference 2023-03-22 02:26:08 +00:00
parent ad8846ad93
commit 33561fe216
Signed by: inference
SSH Key Fingerprint: SHA256:9Pl0nZ2UJacgm+IeEtLSZ4FOESgP1eKCtRflfPfdX9M

15
inf.css
View File

@ -3,7 +3,7 @@
/* Copyright 2022-2023 Jake Winters */ /* Copyright 2022-2023 Jake Winters */
/* SPDX-License-Identifier: BSD-3-Clause-Clear */ /* SPDX-License-Identifier: BSD-3-Clause-Clear */
/* Version: 7.1.0.18 */ /* Version: 7.2.0.19 */
h1, .h1 { h1, .h1 {
@ -56,7 +56,18 @@ body {
.body-link { .body-link {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 18px; font-size: 18px;
color: #ffffff; text-decoration: none;
}
.body-link:link {
color: #5dade2;
}
.body-link:visited {
color: #a569bd;
}
.body-link:hover {
text-decoration: underline; text-decoration: underline;
} }