mirror of https://gitlab.com/curben/blog
fix(css): darker a:visited
This commit is contained in:
parent
f7cba273bc
commit
6b221e6531
|
@ -86,7 +86,7 @@ a:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
a:visited {
|
a:visited {
|
||||||
color: #0b0080;
|
color: purple;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:active {
|
a:active {
|
||||||
|
|
|
@ -472,7 +472,6 @@ select:not([multiple]):not([size]) {
|
||||||
:root {
|
:root {
|
||||||
--main-bg-color: black;
|
--main-bg-color: black;
|
||||||
--main-font-color: #e6e6e6;
|
--main-font-color: #e6e6e6;
|
||||||
--link-hover: white;
|
|
||||||
--alt-bg-color: #333;
|
--alt-bg-color: #333;
|
||||||
--link-underline: #3f72af;
|
--link-underline: #3f72af;
|
||||||
}
|
}
|
||||||
|
@ -553,12 +552,12 @@ a:focus {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:active {
|
a:visited {
|
||||||
color: #faa700;
|
color: purple;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:visited {
|
a:active {
|
||||||
color: #0b0080;
|
color: #faa700;
|
||||||
}
|
}
|
||||||
|
|
||||||
button,
|
button,
|
||||||
|
@ -1302,7 +1301,6 @@ unhide (via JS) if Web Share API is supported */
|
||||||
:root {
|
:root {
|
||||||
--main-bg-color: black;
|
--main-bg-color: black;
|
||||||
--main-font-color: #e6e6e6;
|
--main-font-color: #e6e6e6;
|
||||||
--link-hover: white;
|
|
||||||
--alt-bg-color: #333;
|
--alt-bg-color: #333;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1311,7 +1309,6 @@ unhide (via JS) if Web Share API is supported */
|
||||||
:root {
|
:root {
|
||||||
--main-bg-color: #f1f1f1;
|
--main-bg-color: #f1f1f1;
|
||||||
--main-font-color: #333;
|
--main-font-color: #333;
|
||||||
--link-hover: black;
|
|
||||||
--alt-bg-color: #d8d8d8;
|
--alt-bg-color: #d8d8d8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue