Make footer links lighter

This commit is contained in:
Gabriel Augendre 2020-11-11 12:00:56 +01:00
parent d82e447f1d
commit 87f3fd214b
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -1,5 +1,6 @@
:root {
--accent: #226997;
--accent-light: #7c96a9;
--main: #111111;
--main2: #575757;
--main3: #7d7d7d;
@ -117,6 +118,7 @@ footer {
footer a {
color: var(--main3);
border-bottom-color: var(--accent-light);
}
table {
@ -244,6 +246,10 @@ a:hover, a:focus {
color: var(--background);
}
footer a:hover, footer a:focus {
background-color: var(--accent-light);
}
@media (prefers-color-scheme: dark) {
:root {
--accent: #226997;