fix(css): darker a:visited

This commit is contained in:
MDLeom 2020-12-12 09:29:20 +00:00
parent f7cba273bc
commit 6b221e6531
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
2 changed files with 5 additions and 8 deletions

View File

@ -86,7 +86,7 @@ a:focus {
}
a:visited {
color: #0b0080;
color: purple;
}
a:active {

View File

@ -472,7 +472,6 @@ select:not([multiple]):not([size]) {
:root {
--main-bg-color: black;
--main-font-color: #e6e6e6;
--link-hover: white;
--alt-bg-color: #333;
--link-underline: #3f72af;
}
@ -553,12 +552,12 @@ a:focus {
text-decoration: underline;
}
a:active {
color: #faa700;
a:visited {
color: purple;
}
a:visited {
color: #0b0080;
a:active {
color: #faa700;
}
button,
@ -1302,7 +1301,6 @@ unhide (via JS) if Web Share API is supported */
:root {
--main-bg-color: black;
--main-font-color: #e6e6e6;
--link-hover: white;
--alt-bg-color: #333;
}
}
@ -1311,7 +1309,6 @@ unhide (via JS) if Web Share API is supported */
:root {
--main-bg-color: #f1f1f1;
--main-font-color: #333;
--link-hover: black;
--alt-bg-color: #d8d8d8;
}