update links

This commit is contained in:
Nathan Freitas 2021-09-17 16:18:12 -04:00
parent 69aa12c0df
commit 56408abb4a
No known key found for this signature in database
GPG key ID: A801183E69B37AA9
3 changed files with 50 additions and 15 deletions

View file

@ -5,7 +5,41 @@
background-color: $gold;
}
// -------------------------
// Link Styles
// -------------------------
a:link {
text-decoration: none;
color: white;
}
a:visited {
text-decoration: none;
color: white;
}
a:hover {
text-decoration: underline;
color: white;
}
a:active {
text-decoration: underline;
color: white;
}
.darklink:link {
color: grey;
}
.darklink:visited {
color: grey;
}
.darklink:hover {
color: grey;
}
.darklink:active {
color: grey;
}
// -------------------------
// Header Styles
// -------------------------