summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--src/css/base.css6
-rw-r--r--static/chip.pngbin0 -> 7748 bytes
3 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2aa5555..10d5f86 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ blog/index.html: blog/posts.csv templates/base.m4
m4 -DPAGECONTENT="$$(./csv2index.sh /blog < $<)" templates/base.m4 > $@
static/style.css: src/css/style.css src/css/style.css src/css/base.css src/css/navbar.css src/css/scanlines.css
- esbuild src/css/style.css --bundle --minify --outfile=static/style.css
+ esbuild src/css/style.css --external:'/static/*' --bundle --minify --outfile=static/style.css
%.html: %.md templates/base.m4
m4 -DPAGECONTENT="$$(./genpage.sh < $<)" templates/base.m4 > $@
diff --git a/src/css/base.css b/src/css/base.css
index 25b71a5..3725f8d 100644
--- a/src/css/base.css
+++ b/src/css/base.css
@@ -2,9 +2,13 @@
box-sizing: border-box;
}
+html {
+ background-image: url('/static/chip.png');
+}
+
body {
color: #999;
- background-color: #000;
+ background-color: rgba(0, 0, 0, 0.75);
width: 90%;
max-width: 1000px;
diff --git a/static/chip.png b/static/chip.png
new file mode 100644
index 0000000..7adcd7a
--- /dev/null
+++ b/static/chip.png
Binary files differ