From 2fe3b4972f02be8b0c6143325d541ddda4b91559 Mon Sep 17 00:00:00 2001
From: vulonkaaz <7442677+vulonkaaz@users.noreply.github.com>
Date: Wed, 19 Jun 2024 17:44:29 +0200
Subject: Initial version
---
static/about.html | 22 ++++++++++++++++++++++
static/style.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
create mode 100644 static/about.html
create mode 100644 static/style.css
(limited to 'static')
diff --git a/static/about.html b/static/about.html
new file mode 100644
index 0000000..285b861
--- /dev/null
+++ b/static/about.html
@@ -0,0 +1,22 @@
+
+
+
+
+Paperchan.club
+
+
+
+
+
+
+ Paperchan.club
+ This is an anonymous imageboard inspired by 4chan and pictochat,
+ every posts here must be handwritten by hand
+ This is a good vibes only website every post that ruins the vibe of
+ the place will be deleted
+ Every illegal posts will be deleted and possibly be reported to the police
+ The software is still work in progress, contribute on
+ github
+ Back to the site
+
+
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..e82190c
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,49 @@
+body {
+ background-color: #cff3ff;
+ padding: 20px;
+}
+
+main {
+ border: 1px solid black;
+ background-color: #cef;
+ width: fit-content;
+ margin: auto;
+ padding: 5px;
+}
+
+h1 {
+ text-align: center;
+}
+
+.threadlist {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ margin-bottom: 30px;
+}
+
+.thread {
+ display: flex;
+ flex-direction: column;
+ width: min-content;
+ margin: auto;
+}
+
+h1 {
+ text-align: center;
+}
+
+article {
+ border: #5e5e5e 1px dashed;
+ margin: 2px;
+}
+
+.editor {
+ width: fit-content;
+ margin: auto;
+ margin-bottom: 20px;
+}
+
+footer {
+ font-size: 0.8em;
+}
--
cgit v1.2.3