diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2023-10-21 18:31:30 +0200 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2023-10-21 18:31:30 +0200 |
| commit | 9072fa4355733ec2f7c4b4bb8dd8dc2226ee24ac (patch) | |
| tree | 264e09e4587fe61b7142086d5dd4c457add4cbd1 /assets | |
| parent | 88cc62d45e6614d1f9301c42aaa3bdd8e2586a75 (diff) | |
| parent | cc703b0274f0b3fe6520be3fde0f0e42f9b4ad3c (diff) | |
| download | invidious-9072fa4355733ec2f7c4b4bb8dd8dc2226ee24ac.tar.gz invidious-9072fa4355733ec2f7c4b4bb8dd8dc2226ee24ac.tar.bz2 invidious-9072fa4355733ec2f7c4b4bb8dd8dc2226ee24ac.zip | |
CSS: Improve links contrast on dark theme (#4100)
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/default.css | 38 |
1 files changed, 32 insertions, 6 deletions
diff --git a/assets/css/default.css b/assets/css/default.css index b4053b5c..c902fbac 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -441,16 +441,26 @@ p.video-data { margin: 0; font-weight: bold; font-size: 80%; } */ footer { - color: #919191; margin-top: auto; padding: 1.5em 0; text-align: center; max-height: 30vh; } -footer a { - color: #919191 !important; - text-decoration: underline; +.light-theme footer { + color: #7c7c7c; +} + +.dark-theme footer { + color: #adadad; +} + +.light-theme footer a { + color: #7c7c7c !important; +} + +.dark-theme footer a { + color: #adadad !important; } footer span { @@ -556,6 +566,14 @@ span > select { color: #303030; } + .no-theme footer { + color: #7c7c7c; + } + + .no-theme footer a { + color: #7c7c7c !important; + } + .light-theme .pure-menu-heading { color: #565d64; } @@ -589,7 +607,7 @@ span > select { } .dark-theme a { - color: #a0a0a0; + color: #adadad; text-decoration: none; } @@ -643,7 +661,7 @@ body.dark-theme { } .no-theme a { - color: #a0a0a0; + color: #adadad; text-decoration: none; } @@ -674,6 +692,14 @@ body.dark-theme { background-color: inherit; color: inherit; } + + .no-theme footer { + color: #adadad; + } + + .no-theme footer a { + color: #adadad !important; + } } |
