From 9f1df7c137045ee852785f34ad327cb96cff9c97 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 14 Aug 2025 09:33:21 -0700 Subject: [PATCH] Add the `style.css` to the project so that run.sh is not completely necessary. --- .gitignore | 2 -- static/style.css | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 static/style.css diff --git a/.gitignore b/.gitignore index c883417..6fd12db 100644 --- a/.gitignore +++ b/.gitignore @@ -12,5 +12,3 @@ hugo.linux # Temporary lock file while building /.hugo_build.lock - -static/style.css diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..d3b2088 --- /dev/null +++ b/static/style.css @@ -0,0 +1,45 @@ +body { + font-family: sans-serif ; + background: #110000 ; + color: #ccc ; +} + +main { + max-width: 800px ; + margin: auto ; +} + +img { + max-width: 100% ; +} + +header h1 { + text-align: center ; +} + +footer { + text-align: center ; + clear: both ; +} + +/* For TAGLIST.HTML */ +.taglist { + text-align: center ; + clear: both ; +} + +/* For NEXTPREV.HTML */ +#nextprev { + /* The container for both the previous and next articles. */ +} +#prevart { + float: left ; + text-align: left ; +} +#nextart { + float: right ; + text-align: right ; +} +#nextart,#prevart { + max-width: 33% ; +}