diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | src/css/base.css | 14 | ||||
| -rw-r--r-- | static/chip.png | bin | 0 -> 7748 bytes | |||
| -rw-r--r-- | templates/base.m4 | 2 |
4 files changed, 14 insertions, 4 deletions
@@ -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 Binary files differnew file mode 100644 index 0000000..7adcd7a --- /dev/null +++ b/static/chip.png 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> |
