Unified darkmode and footer link colour.

This commit is contained in:
Greenscreener 2020-10-07 12:29:01 +02:00
parent 80ac584b16
commit 8518c3ce41

View File

@ -1,6 +1,7 @@
// Bulma customization // Bulma customization
$primary: #0b2a37; $primary: #0b2a37;
$link-light: #2EA1FF;
// /Bulma customization // /Bulma customization
@ -147,7 +148,7 @@ a {
color: $primary-invert; color: $primary-invert;
} }
a { a {
color: #73A0E7; color: $link-light;
&:hover { &:hover {
color: white; color: white;
} }
@ -156,7 +157,7 @@ a {
a { a {
color: white; color: white;
&:hover { &:hover {
color: #73A0E7; color: $link-light;
} }
} }
} }
@ -216,9 +217,9 @@ h2 a {
background-color: $black-ter; background-color: $black-ter;
color: white; color: white;
a { a {
color: $link; color: $link-light;
&:hover { &:hover {
color: lighten($link, 30) !important; color: white !important;
} }
} }
} }
@ -234,7 +235,8 @@ h2 a {
.pagination-link { .pagination-link {
color: white; color: white;
&.is-current { &.is-current {
color: white; color: black;
background-color: $link-light;
} }
} }
.has-text-grey { .has-text-grey {