diff options
author | Martin Ashby <martin@ashbysoft.com> | 2022-10-15 22:36:52 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2022-10-15 22:36:52 +0100 |
commit | 297d38b69efaa54f5585b806e7934375d2df9765 (patch) | |
tree | 76c11158f1d6f2e2f2a8d948b6e6360e75884136 /include/head.html | |
download | blogsite2-297d38b69efaa54f5585b806e7934375d2df9765.tar.gz blogsite2-297d38b69efaa54f5585b806e7934375d2df9765.tar.bz2 blogsite2-297d38b69efaa54f5585b806e7934375d2df9765.tar.xz blogsite2-297d38b69efaa54f5585b806e7934375d2df9765.zip |
Initial commitmain
Diffstat (limited to 'include/head.html')
-rw-r--r-- | include/head.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/head.html b/include/head.html new file mode 100644 index 0000000..b3d945d --- /dev/null +++ b/include/head.html @@ -0,0 +1,26 @@ +<meta name="viewport" content="width=device-width, initial-scale=1.0"> +<style> + /* CSS taken from https://perfectmotherfuckingwebsite.com/ */ + body{ + max-width:650px; + margin:40px auto; + padding:0 10px; + font:18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + color:#444 + } + h1,h2,h3{ + line-height:1.2 + } + @media (prefers-color-scheme: dark){ + body{ + color:#c9d1d9; + background:#0d1117 + } + a:link{ + color:#58a6ff + } + a:visited{ + color:#8e96f0 + } + } +</style> |