From: Ben Beltran Date: Mon, 3 Jun 2019 21:00:10 +0000 (+0200) Subject: Merge branch 'hotfix/4.1.0' into develop X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/commitdiff_plain/3704bdc31fe0501eea0b38602ab31c1db00ad4aa?hp=0b4f39502b215cdd02e8643e7f1497c6c3997705 Merge branch 'hotfix/4.1.0' into develop --- 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; + } +}