add source code and style anchor text colors
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user