From daf37a8a5d0e251884d953f26a066eebed896054 Mon Sep 17 00:00:00 2001 From: esquizo Date: Sun, 14 Jun 2026 16:51:58 -0300 Subject: adicionado uma imagem de fundo --- Makefile | 2 +- src/css/base.css | 6 +++++- static/chip.png | Bin 0 -> 7748 bytes 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 static/chip.png 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 Binary files /dev/null and b/static/chip.png differ -- cgit v1.2.3