css: support netsurf
This commit is contained in:
parent
97eb1f0fed
commit
ab678b3f6f
|
@ -76,8 +76,11 @@ h1.brand-title {
|
|||
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 {
|
||||
color: #eee;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
h1.brand-title {
|
||||
|
@ -119,7 +122,7 @@ main {
|
|||
$featuresGutter: 1rem;
|
||||
#page-index .leftright {
|
||||
padding-top: 1em;
|
||||
margin: 0 -$featuresGutter;
|
||||
margin: (0-$featuresGutter);
|
||||
|
||||
/* Tiles are vertically center-aligned, top margin is unnecessary */
|
||||
h1 {
|
||||
|
@ -254,6 +257,12 @@ $featuresGutter: 1rem;
|
|||
/** Media Media Responsive Media **/
|
||||
/**********************************/
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
h1.brand-title > a, h2.brand-subtitle {
|
||||
color: #eee;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
h1, h2, h3, body {
|
||||
color: $darkTextColor;
|
||||
|
|
Loading…
Reference in New Issue