commit 76a86b0bd6fa1c570bb91875b581f77595425025 Author: futile Date: Tue Nov 5 16:28:25 2024 +0000 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..f8f95d3 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +## futile site +i made this in a couple of hours while listening to korn. i don't know web development. this is my first time making a website that i have put effort into and haven't been helped by someone or repurposed a different source into my own. \ No newline at end of file diff --git a/assets/Iosevka-Regular.woff2 b/assets/Iosevka-Regular.woff2 new file mode 100644 index 0000000..60d1e85 Binary files /dev/null and b/assets/Iosevka-Regular.woff2 differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..3c13a58 --- /dev/null +++ b/index.html @@ -0,0 +1,31 @@ + + + + + + + + « futile » + + + +
+

futile

+
+
+

─────

+
+
+

+ hello, my name is futile. i am a weird concept from the internet (or a person from europe, depending + who you ask). i like programming (mostly rust), computers, linux, malicious software such as game hacks and + malware, and vehicles that drive or fly.

+ if you want to contact me, email +

+
+ + + + \ No newline at end of file diff --git a/not_found.html b/not_found.html new file mode 100644 index 0000000..7591a78 --- /dev/null +++ b/not_found.html @@ -0,0 +1,17 @@ + + + + + + + + « not found » + + + +
+

not found

+
+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..083e5af --- /dev/null +++ b/style.css @@ -0,0 +1,67 @@ +@import url(https://fonts.bunny.net/css?family=bokor:400); +@font-face { + font-family: 'Iosevka', monospace; + src: url('assets/Iosevka-Regular.woff2'); +} +* { + user-select: none; +} +body { + background-color: black; + color: white; + font-family: 'Iosevka', monospace; +} +.email { + text-decoration: underline dashed; + user-select: text; +} +.main-title { + font-family: 'Bokor', display; + font-size: 5em; + line-height: 1em; + margin-top: 0.2em; + margin-bottom: 0em; +} +.separator { + line-height: 0em; + margin-top: 0.5em; + margin-bottom: 0em; + user-select: none; +} +.content { + line-height: 1.3em; +} +.box { + display: flex; + justify-content: center; + align-items: center; + max-width: 480px; + margin: 0 auto; +} +div.footer { + display: flex; + justify-content: center; + align-items: center; + margin: 0 auto; + position: absolute; + bottom: 0; + left: 0; + right: 0; +} +/* ul.footer { + list-style-type: none; + margin: 0; + padding: 0; + padding-left: 10px; + display: flex; +} +ul.footer li { + margin-right: 10px; +} +ul.footer a { + color: white; + text-decoration: none; +} +ul.footer a:hover { + text-decoration: underline; +} */