summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authorRadoslavL <rlelchev@abv.bg>2023-09-19 09:15:44 +0300
committerRadoslavL <rlelchev@abv.bg>2023-09-19 09:15:44 +0300
commite8c9b85ef5b1eb933dffba0a2c5e03c12f03352e (patch)
tree5b33303c963d276d94e1925b1e5d54305e88f7d4 /assets
parent270d606ad8f8b17430165227c98c46d8495995e5 (diff)
downloadinvidious-e8c9b85ef5b1eb933dffba0a2c5e03c12f03352e.tar.gz
invidious-e8c9b85ef5b1eb933dffba0a2c5e03c12f03352e.tar.bz2
invidious-e8c9b85ef5b1eb933dffba0a2c5e03c12f03352e.zip
Increased footer contrast
Diffstat (limited to 'assets')
-rw-r--r--assets/css/default.css49
1 files changed, 44 insertions, 5 deletions
diff --git a/assets/css/default.css b/assets/css/default.css
index ec037240..5ddfd143 100644
--- a/assets/css/default.css
+++ b/assets/css/default.css
@@ -432,17 +432,30 @@ p.video-data { margin: 0; font-weight: bold; font-size: 80%; }
* Footer
*/
-footer {
- color: #919191;
+.light-theme footer {
+ color: #7c7c7c;
margin-top: auto;
padding: 1.5em 0;
text-align: center;
max-height: 30vh;
}
-footer a {
- color: #919191 !important;
- text-decoration: underline;
+.dark-theme footer {
+ color: #adadad;
+ margin-top: auto;
+ padding: 1.5em 0;
+ text-align: center;
+ max-height: 30vh;
+}
+
+.light-theme footer a {
+ color: #7c7c7c !important;
+/*text-decoration: underline;*/
+}
+
+.dark-theme footer a {
+ color: #adadad !important;
+/*text-decoration: underline;*/
}
footer span {
@@ -548,6 +561,19 @@ span > select {
color: #303030;
}
+ .no-theme footer {
+ color: #7c7c7c;
+ margin-top: auto;
+ padding: 1.5em 0;
+ text-align: center;
+ max-height: 30vh;
+ }
+
+ .no-theme footer a {
+ color: #7c7c7c !important;
+/* text-decoration: underline;*/
+ }
+
.light-theme .pure-menu-heading {
color: #565d64;
}
@@ -666,6 +692,19 @@ body.dark-theme {
background-color: inherit;
color: inherit;
}
+
+ .no-theme footer {
+ color: #adadad;
+ margin-top: auto;
+ padding: 1.5em 0;
+ text-align: center;
+ max-height: 30vh;
+ }
+
+ .no-theme footer a {
+ color: #adadad !important;
+ /*text-decoration: underline;*/
+ }
}