1
Fork 0

header colors

This commit is contained in:
Motiejus Jakštys 2024-01-20 13:28:51 +02:00
parent d40c2463fd
commit b3da3c8294
1 changed files with 1 additions and 10 deletions

View File

@ -77,9 +77,6 @@ h1.brand-title {
text-align: center; text-align: center;
} }
// Overwritten in prefers-color-scheme-light.
// This is here for browsers that don't support
// css gradients.
h1.brand-title > a, h2.brand-subtitle { h1.brand-title > a, h2.brand-subtitle {
color: #000; color: #000;
} }
@ -113,7 +110,7 @@ main {
max-width: 1000px; max-width: 1000px;
background-color: #e6e6e6; background-color: #e6e6e6;
background: radial-gradient(circle at top left, $lightBlue 0%, $grey 50%, $darkTextColor 100%); background: radial-gradient(circle at top left, $lightBlue 0%, #aaa 50%, #666 100%);
} }
/*******************************/ /*******************************/
@ -258,12 +255,6 @@ $featuresGutter: 1rem;
/** Media Media Responsive Media **/ /** Media Media Responsive Media **/
/**********************************/ /**********************************/
@media (prefers-color-scheme: light) {
h1.brand-title > a, h2.brand-subtitle {
color: #eee;
}
}
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
h1, h2, h3, body { h1, h2, h3, body {
color: $darkTextColor; color: $darkTextColor;