Add the style.css to the project so that run.sh is not completely necessary.

This commit is contained in:
2025-08-14 09:33:21 -07:00
parent eac5e531b7
commit 9f1df7c137
2 changed files with 45 additions and 2 deletions

2
.gitignore vendored
View File

@@ -12,5 +12,3 @@ hugo.linux
# Temporary lock file while building
/.hugo_build.lock
static/style.css

45
static/style.css Normal file
View File

@@ -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% ;
}