commit 7dcb50be007bc5173e78af7cb8f3518aff22c26b from: Tobias Heider date: Fri Jun 9 14:40:05 2023 UTC Update main site with new light/dark color schemes and layout. Fix dark mode for text posts. commit - 260194bd4b0a7d83c4005a28e725bdc884ce52a8 commit + 7dcb50be007bc5173e78af7cb8f3518aff22c26b blob - b6d3d607a45990c3b0a333f4cc1159fd1e814eac blob + e07f1d4032e7275700a04818e0732f981fab4a21 --- index.html +++ index.html @@ -5,16 +5,27 @@ + +

Tobias Heider

+ +

Some of my Work

+ OpenIKED + Ubuntu Asahi + Personal Notes +
+ +

Where to Find me

Github Gitlab Mastodon - OpenIKED
- PGP + +

Mail

Mail + PGP
blob - 9887dad3dbfa6881fe19d0a991b0a6b3550b402d blob + 49586254d340a492772229276594fc00dad321fd --- stuff/style.css +++ stuff/style.css @@ -33,3 +33,22 @@ pre { #footnote { font-size: 0.75em; } + +@media (prefers-color-scheme: dark) { + body { + background: #1e1f21; + color: #EEEFF1; + } + + p,ul,ol { + color: #EEEFF1; + } + + pre { + background: black; + } + a:link { color: #F55; } + a:visited { color: #F55; } + a:active { color: #F55; } + a:hover { color: #FBB; } +} blob - b55fabfba420a26cd2abe8c9c951829fd6342e11 blob + 05125ded67e80c4bd364c94b10eb30fac7e99927 --- styles.css +++ styles.css @@ -2,12 +2,10 @@ body { position: absolute; font-family: monospace, monospace; font-size: 200%; - top: 30%; + top: 10%; text-align: center; width: 100%; margin: 0; - background: #1e1f21; - color: #EEEFF1; } body#keys { @@ -27,9 +25,21 @@ body#keys { #links { display: inline-block; + text-align: left; } -a:link { font-weight: bold; color: #F55; } -a:visited { font-weight: bold; color: #F55; } -a:active { font-weight: bold; color: #F55; } -a:hover { color: #FBB; } +a:link { font-weight: bold; } +a:visited { font-weight: bold; } +a:active { font-weight: bold; } + +@media (prefers-color-scheme: dark) { + body { + background: #1e1f21; + color: #EEEFF1; + } + + a:link { color: #F55; } + a:visited { color: #F55; } + a:active { color: #F55; } + a:hover { color: #FBB; } +}