X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/81003de3d5db449a97b4718f50d998f2f036ad6b..beaf29131ab0c363a235f63c2c1a197fed5a3976:/jekyll/css/application.css diff --git a/jekyll/css/application.css b/jekyll/css/application.css index 45a6657..171764c 100644 --- a/jekyll/css/application.css +++ b/jekyll/css/application.css @@ -1,36 +1,33 @@ +html { + font-size: 10px; +} + body { + margin: 0; background-color: white; font-family: times, 'Times New Roman', serif; - font-smooth: never; - -webkit-font-smoothing: none; -} - -h1 a { - color: black; } -h1 a:visited { +header a, header a:visited { color: black; } -em {color:#99a3a4} - -.main-container { - margin: 20px 0; -} - -h1, h2, h3 { + display: inline-block; + margin-left: 10px; font-weight: 300; } h1 { - font-size: 3.33em; + margin: -0.3em 0 0 -0.1em; + font-size: 9.6em; + font-style: italic; + text-transform: uppercase; } h2 { - font-size: 1.61em; + font-size: 4.8em; } a { @@ -41,10 +38,86 @@ a:visited { color: purple; } +ul, p { + font-size: 1.8em; + line-height: 1.28em; + margin-left: 1em; + max-width: 50em; + font-family: 'Helvetica Neue', Arial, sans-serif; +} + ul { list-style: square; } li { + display: inline-block; line-height: 1.82em; } + +aside { + display: inline; + color: grey; +} + +img, +video { + max-width: 100vw; +} + +li, h2, h3, p { + background-color: white; +} + +/* Dark mode overrides */ +@media (prefers-color-scheme: dark) { + body { + background-color: black; + color: white; + } + + h1 a, h1 a:visited { + color: white; + } + + a { + color: #53FFFF; + } + + a:visited { + color: #FF55FF; + } + + a[href^="telnet"] { + color: #55FF55; + } + + aside { + color: #FFEC27; + } + + li, h2, h3, p { + background-color: black; + } +} + +/* + * Mini header + */ +@media (max-width: 600px) { + h1 { + font-size: 4.8em; + } +} + +/* + * Breadsticks + */ +canvas.background { + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + z-index: -1; +}