summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoresquizo <esquizo+noreply@esquizo.net>2026-06-14 17:10:17 -0300
committeresquizo <esquizo+noreply@esquizo.net>2026-06-14 17:10:17 -0300
commit4b6f76d2c53741f0995275c427dc9aa752cf38f7 (patch)
treef8a3f98b45c7b54c0af763eced25759e5988ea82
parenteed30928f73b06333113ea5162452242598b31e6 (diff)
parenta3ab0fd94b585edc7afc32920c80966575cc1c56 (diff)
Merge branch 'mais-estiloz'HEADmaster
-rw-r--r--Makefile2
-rw-r--r--src/css/base.css14
-rw-r--r--static/chip.pngbin0 -> 7748 bytes
-rw-r--r--templates/base.m42
4 files changed, 14 insertions, 4 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..16526f3 100644
--- a/src/css/base.css
+++ b/src/css/base.css
@@ -2,16 +2,26 @@
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;
- margin: 20px auto;
+ padding: 20px;
+ margin: 0px auto;
font-size: 16px;
}
+body > main, header {
+ border: 1px solid #999;
+ padding: 5px;
+}
+
header {
margin: auto;
}
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
diff --git a/templates/base.m4 b/templates/base.m4
index 4f8ae14..75c3e84 100644
--- a/templates/base.m4
+++ b/templates/base.m4
@@ -56,7 +56,7 @@ define(`BUTTON_LIST', `
</main>
<footer>
- Toda ofensa foi inteiramente proposital.
+ Somente um idiota levaria qualquer coisa aqui a sério.<br/>
</footer>
<div class="scanlines"></div>