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 From 3974fb7ddb76f75534926554934260753cf5e52f Mon Sep 17 00:00:00 2001 From: esquizo Date: Sun, 14 Jun 2026 16:57:35 -0300 Subject: melhorado fundo do corpo --- src/css/base.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/css/base.css b/src/css/base.css index 3725f8d..fee0d7d 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -12,7 +12,8 @@ body { width: 90%; max-width: 1000px; - margin: 20px auto; + padding: 20px; + margin: 0px auto; font-size: 16px; } -- cgit v1.2.3 From 94896148e3cbca8564b6a22908295787a16c5a5c Mon Sep 17 00:00:00 2001 From: esquizo Date: Sun, 14 Jun 2026 17:03:54 -0300 Subject: adicionada bordas na main e na header --- src/css/base.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/css/base.css b/src/css/base.css index fee0d7d..16526f3 100644 --- a/src/css/base.css +++ b/src/css/base.css @@ -17,6 +17,11 @@ body { font-size: 16px; } +body > main, header { + border: 1px solid #999; + padding: 5px; +} + header { margin: auto; } -- cgit v1.2.3 From a3ab0fd94b585edc7afc32920c80966575cc1c56 Mon Sep 17 00:00:00 2001 From: esquizo Date: Sun, 14 Jun 2026 17:09:29 -0300 Subject: uma pequena referĂȘncia MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/base.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', `
- Toda ofensa foi inteiramente proposital. + Somente um idiota levaria qualquer coisa aqui a sério.
-- cgit v1.2.3