diff --git a/assets/css/dark.css b/assets/css/dark.css index d9ad945..9f6ab67 100644 --- a/assets/css/dark.css +++ b/assets/css/dark.css @@ -1,15 +1,13 @@ @media (prefers-color-scheme: dark) { html { - background: #000; - color: #fff; + /*"background" is short for a bunch of unnecessary CSS rules; background-color is all I need*/ + background-color: #000; + color: #eee; /*I've been told that pure white on black is a bit harsh*/ } /* IndieWeb u-photo shouldn't look like floating punctuation marks */ .u-photo { - /* Versions of Samsung Internet released recently as 2017 need this - * prefix, along with Qt4-based QtWebkit used in e.g. rekonq */ - -webkit-filter: invert(1); - filter: invert(1); + border: 1px solid #ddc; } a { diff --git a/assets/css/main.css b/assets/css/main.css index 5b29f9d..c4eecfe 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -57,6 +57,7 @@ nav li { } } +/* center images that aren't my indieweb icon */ img:not(.u-photo) { display: block; height: auto;