Increased footer contrast

This commit is contained in:
RadoslavL 2023-09-19 09:15:44 +03:00
parent 270d606ad8
commit e8c9b85ef5

View File

@ -432,17 +432,30 @@ p.video-data { margin: 0; font-weight: bold; font-size: 80%; }
* Footer * Footer
*/ */
footer { .light-theme footer {
color: #919191; color: #7c7c7c;
margin-top: auto; margin-top: auto;
padding: 1.5em 0; padding: 1.5em 0;
text-align: center; text-align: center;
max-height: 30vh; max-height: 30vh;
} }
footer a { .dark-theme footer {
color: #919191 !important; color: #adadad;
text-decoration: underline; 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 { footer span {
@ -548,6 +561,19 @@ span > select {
color: #303030; 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 { .light-theme .pure-menu-heading {
color: #565d64; color: #565d64;
} }
@ -666,6 +692,19 @@ body.dark-theme {
background-color: inherit; background-color: inherit;
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;*/
}
} }