add source code and style anchor text colors

This commit is contained in:
2025-11-11 12:09:52 -08:00
parent d8a411cc91
commit 0fe7002da1
2 changed files with 21 additions and 0 deletions
+1
View File
@@ -91,6 +91,7 @@ if (isset($_GET['group'])) {
} else {
echo "<p>No group specified.</p>";
}
echo "<p>Source code can be found <a target='_blank' rel='noopener noreferrer' href='https://gitea.matt-cloud.com/matt/gpo_lookup'>here</a>.<p>";
?>
</body>
+20
View File
@@ -8,6 +8,26 @@ body {
color: #bdc3c7; /* Dimmer text color */
}
/* unvisited link */
a:link {
color: rgb(184, 44, 44);
}
/* visited link */
a:visited {
color: rgb(42, 176, 42);
}
/* mouse over link */
a:hover {
color: rgb(154, 84, 119);
}
/* selected link */
a:active {
color: rgb(96, 96, 196);
}
.hidden-info {
display: none;
}