From 8fd8b7e53d59a034706dd7eaad6b608721ce3cdb Mon Sep 17 00:00:00 2001 From: seth Date: Wed, 22 May 2024 22:00:02 -0400 Subject: move to zola --- static/favicon.ico | Bin 0 -> 15406 bytes static/files/rickroll.mp4 | Bin 0 -> 20247438 bytes static/imgs/construction.png | Bin 0 -> 118352 bytes static/imgs/gifs/acab.gif | Bin 0 -> 8785 bytes static/imgs/gifs/arnold.gif | Bin 0 -> 5046 bytes static/imgs/gifs/capitalism.gif | Bin 0 -> 253 bytes static/imgs/gifs/legalize.gif | Bin 0 -> 7182 bytes static/imgs/gifs/obras.gif | Bin 0 -> 5497 bytes static/imgs/gifs/poweredbynix.svg | 187 ++++++++++++++++++++++++++++++++++++++ static/imgs/gifs/pride.gif | Bin 0 -> 17783 bytes static/imgs/gifs/steam.gif | Bin 0 -> 2750 bytes static/imgs/gifs/web3.gif | Bin 0 -> 483 bytes static/imgs/gifs/weezer.gif | Bin 0 -> 24883 bytes static/imgs/tapwater.png | Bin 0 -> 358758 bytes static/main.css | 73 +++++++++++++++ 15 files changed, 260 insertions(+) create mode 100644 static/favicon.ico create mode 100644 static/files/rickroll.mp4 create mode 100644 static/imgs/construction.png create mode 100644 static/imgs/gifs/acab.gif create mode 100644 static/imgs/gifs/arnold.gif create mode 100644 static/imgs/gifs/capitalism.gif create mode 100644 static/imgs/gifs/legalize.gif create mode 100644 static/imgs/gifs/obras.gif create mode 100644 static/imgs/gifs/poweredbynix.svg create mode 100644 static/imgs/gifs/pride.gif create mode 100644 static/imgs/gifs/steam.gif create mode 100644 static/imgs/gifs/web3.gif create mode 100644 static/imgs/gifs/weezer.gif create mode 100644 static/imgs/tapwater.png create mode 100644 static/main.css (limited to 'static') diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..4880f14 Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/files/rickroll.mp4 b/static/files/rickroll.mp4 new file mode 100644 index 0000000..b988dc4 Binary files /dev/null and b/static/files/rickroll.mp4 differ diff --git a/static/imgs/construction.png b/static/imgs/construction.png new file mode 100644 index 0000000..1c038b0 Binary files /dev/null and b/static/imgs/construction.png differ diff --git a/static/imgs/gifs/acab.gif b/static/imgs/gifs/acab.gif new file mode 100644 index 0000000..6f8ccef Binary files /dev/null and b/static/imgs/gifs/acab.gif differ diff --git a/static/imgs/gifs/arnold.gif b/static/imgs/gifs/arnold.gif new file mode 100644 index 0000000..0035988 Binary files /dev/null and b/static/imgs/gifs/arnold.gif differ diff --git a/static/imgs/gifs/capitalism.gif b/static/imgs/gifs/capitalism.gif new file mode 100644 index 0000000..c4abb60 Binary files /dev/null and b/static/imgs/gifs/capitalism.gif differ diff --git a/static/imgs/gifs/legalize.gif b/static/imgs/gifs/legalize.gif new file mode 100644 index 0000000..071d4d4 Binary files /dev/null and b/static/imgs/gifs/legalize.gif differ diff --git a/static/imgs/gifs/obras.gif b/static/imgs/gifs/obras.gif new file mode 100644 index 0000000..3c8443e Binary files /dev/null and b/static/imgs/gifs/obras.gif differ diff --git a/static/imgs/gifs/poweredbynix.svg b/static/imgs/gifs/poweredbynix.svg new file mode 100644 index 0000000..0bc8c80 --- /dev/null +++ b/static/imgs/gifs/poweredbynix.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/imgs/gifs/pride.gif b/static/imgs/gifs/pride.gif new file mode 100644 index 0000000..9a48896 Binary files /dev/null and b/static/imgs/gifs/pride.gif differ diff --git a/static/imgs/gifs/steam.gif b/static/imgs/gifs/steam.gif new file mode 100644 index 0000000..1f4fe29 Binary files /dev/null and b/static/imgs/gifs/steam.gif differ diff --git a/static/imgs/gifs/web3.gif b/static/imgs/gifs/web3.gif new file mode 100644 index 0000000..4f5a2f1 Binary files /dev/null and b/static/imgs/gifs/web3.gif differ diff --git a/static/imgs/gifs/weezer.gif b/static/imgs/gifs/weezer.gif new file mode 100644 index 0000000..d7fa9d1 Binary files /dev/null and b/static/imgs/gifs/weezer.gif differ diff --git a/static/imgs/tapwater.png b/static/imgs/tapwater.png new file mode 100644 index 0000000..e84fe8e Binary files /dev/null and b/static/imgs/tapwater.png differ diff --git a/static/main.css b/static/main.css new file mode 100644 index 0000000..89789c2 --- /dev/null +++ b/static/main.css @@ -0,0 +1,73 @@ +:root { + --background-color: #1e1e2e; + --primary-font: "Noto Sans"; + --regular-text: #cdd6f4; + --blue-text: #89b4fa; + --subtext: #bac2de; + --medium-screen: 768px; +} + +body { + background-color: var(--background-color); + font-family: var(--primary-font), system-ui; + line-height: 1.5rem; + margin-left: auto; + margin-right: auto; + margin-top: 1.25rem; + margin-bottom: 1.25rem; + max-width: var(--medium-screen); + padding: 0.75rem; +} + +h1, +h2, +h3, +h4, +h5, +h6, +strong, +b, +p { + color: var(--regular-text); +} + +a { + text-decoration: underline; + color: var(--blue-text); +} + +video { + width: 100%; + height: auto; + max-width: var(--medium-screen); +} + +footer { + color: var(--subtext); + font-size: 0.75rem; + + text-align: right; +} + +#nav_links { + display: flex; + gap: 0.25rem; +} + +#gifs { + display: none; + flex-direction: row; + flex-wrap: wrap; + gap: 0.5rem; + justify-content: space-evenly; +} + +.blogpost { + font-size: 0.85rem; +} + +@media screen and (min-width: 768px) { + #gifs { + display: flex; + } +} -- cgit v1.2.3