From: Ben Beltran Date: Mon, 3 Jun 2019 21:00:02 +0000 (+0200) Subject: Merge branch 'hotfix/4.1.0' X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/commitdiff_plain/df6f8deea66ef205049723e4b7cd1eda0f59f664?hp=10fae9d7b014de353cc4100b6e67abc91581ce1d Merge branch 'hotfix/4.1.0' --- diff --git a/jekyll/css/application.css b/jekyll/css/application.css index 5150064..df94fa6 100644 --- a/jekyll/css/application.css +++ b/jekyll/css/application.css @@ -6,16 +6,10 @@ body { -webkit-font-smoothing: none; } -h1 a { +h1 a, h1 a:visited { color: black; } -h1 a:visited { - color: black; -} - -em {color:#99a3a4} - .main-container { margin: 20px 0; } @@ -59,3 +53,23 @@ img, video { max-width: 100vw; } + +/* Dark mode overrides */ +@media (prefers-color-scheme: dark) { + body { + background-color: white; + color: white; + } + + h1 a, h1 a:visited { + color: white; + } + + a { + color: #53FFFF; + } + + a:visited { + color: #FF55FF; + } +}