X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/81003de3d5db449a97b4718f50d998f2f036ad6b..bb31ec9cf703bb4dce781f11e0f84256a38e55f6:/jekyll/css/application.css?ds=sidebyside diff --git a/jekyll/css/application.css b/jekyll/css/application.css index 45a6657..df94fa6 100644 --- a/jekyll/css/application.css +++ b/jekyll/css/application.css @@ -1,20 +1,15 @@ body { + margin: 0; background-color: white; font-family: times, 'Times New Roman', serif; font-smooth: never; -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; } @@ -22,6 +17,7 @@ em {color:#99a3a4} h1, h2, h3 { + margin-left: 10px; font-weight: 300; } @@ -41,6 +37,10 @@ a:visited { color: purple; } +ul, p { + margin-left: 10px; +} + ul { list-style: square; } @@ -48,3 +48,28 @@ ul { li { line-height: 1.82em; } + +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; + } +}