diff --git a/.gitignore b/.gitignore index ebf22b4..56c9980 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.swp /chat/node_modules mastodon-status/* venv/ diff --git a/tuxcord/ascii/christmas.html b/tuxcord/ascii/christmas.html index 243f33a..a3e8288 100644 --- a/tuxcord/ascii/christmas.html +++ b/tuxcord/ascii/christmas.html @@ -18,4 +18,4 @@ / `.`, | '--' `. ( `. __.j ) \_ |--""___| ,-' - `"--...,+"""" `._,.-' mh + `"--...,+"""" `._,.-' diff --git a/tuxcord/ascii/clippy.html b/tuxcord/ascii/clippy.html new file mode 100644 index 0000000..657b4fd --- /dev/null +++ b/tuxcord/ascii/clippy.html @@ -0,0 +1,8 @@ + + __ + / \ + ^ ^ + O O/ + || || + |\_/| + `___' diff --git a/tuxcord/ascii/halloween.html b/tuxcord/ascii/halloween.html index a284ee3..821ee45 100644 --- a/tuxcord/ascii/halloween.html +++ b/tuxcord/ascii/halloween.html @@ -16,5 +16,4 @@ / `.`, .'`" '--'.l ( `. / ^.^ \) \_ |--""\ `===` / - `"--...,+"""" `--------`mh - + `"--...,+"""" `--------` diff --git a/tuxcord/ascii/normal.html b/tuxcord/ascii/normal.html index fdb7f16..8697993 100644 --- a/tuxcord/ascii/normal.html +++ b/tuxcord/ascii/normal.html @@ -16,5 +16,4 @@ / `.`, | '--' `. ( `. __.j ) \_ |--""___| ,-' - `"--...,+"""" `._,.-' mh - + `"--...,+"""" `._,.-' diff --git a/tuxcord/ascii/singles-day.html b/tuxcord/ascii/singles-day.html deleted file mode 100644 index cd5a65d..0000000 --- a/tuxcord/ascii/singles-day.html +++ /dev/null @@ -1,20 +0,0 @@ - - .-"""-. - ' \ - |,. ,-. | - |()L () \ | - | ___ | - | ` ` | ` - .j ` `. - / ' ' \ - / / ` `. - / / Stay ` . - / / Single l | - . , TuxCord | | - _ ,"`. .| | - | ' ``. | [..-'l - / `.`, | '--' `. -( `. __.j ) - \_ |--""___| ,-' - `"--...,+"""" `._,.-' mh - diff --git a/tuxcord/members.json b/tuxcord/members.json new file mode 100644 index 0000000..78d32a9 --- /dev/null +++ b/tuxcord/members.json @@ -0,0 +1,40 @@ +[ + { + "name": "PixeL", + "additional": "Founder" + }, + { + "name": "bruhhhhh😘", + "pfp": "bruh.png", + "additional": "Admin" + }, + { + "name": "ErrorNoInternet", + "pfp": "error.png", + "additional": "Admin" + }, + { + "name": "Javalsai", + "website": "https://javalsai.tuxcord.net", + "pfp": "javalsai.avif", + "additional": "Admin" + }, + { + "name": "Danmax", + "website": "https://git.javalsai.tuxcord.net/danmax", + "pfp": "danmax.png" + }, + { + "name": "DeaDvey", + "website": "https://deadvey.com", + "pfp": "deadvey.png" + }, + { + "name": "Grialion" + }, + { + "name": "Spamix", + "website": "https://decompil.in" + } + +] diff --git a/tuxcord/static/bruh.png b/tuxcord/static/bruh.png new file mode 100644 index 0000000..3ce439d Binary files /dev/null and b/tuxcord/static/bruh.png differ diff --git a/tuxcord/static/danmax.png b/tuxcord/static/danmax.png new file mode 100644 index 0000000..8e2a57d Binary files /dev/null and b/tuxcord/static/danmax.png differ diff --git a/tuxcord/static/deadvey.png b/tuxcord/static/deadvey.png new file mode 100644 index 0000000..c251085 Binary files /dev/null and b/tuxcord/static/deadvey.png differ diff --git a/tuxcord/static/error.png b/tuxcord/static/error.png new file mode 100644 index 0000000..8edecae Binary files /dev/null and b/tuxcord/static/error.png differ diff --git a/tuxcord/static/generic.png b/tuxcord/static/generic.png new file mode 100644 index 0000000..84b66b7 Binary files /dev/null and b/tuxcord/static/generic.png differ diff --git a/tuxcord/static/index.css b/tuxcord/static/index.css index 409e9fd..0853940 100644 --- a/tuxcord/static/index.css +++ b/tuxcord/static/index.css @@ -12,39 +12,56 @@ footer { width: 100%; background: black; } +h1 { + text-decoration: underline; + font-size: 20px; +} #footer-links { - margin: 10px; + margin: 0px; + padding: 5px; + border-top: 1px solid var(--accent); } hr { color: #ffffff; } -.tuxcord-image { +#ascii-penguin { position: absolute; top: 0; left: 650px; } +#ascii-clippy { + position: absolute; + top: 10px; + left: 650px; + font-size: 10px; + transform: rotate(-0.3rad); +} a { text-decoration: none; color: var(--accent); } -a:hover not(.no-spin) { - animation: half-spin 1s linear infinite; - display: inline-block; /* Ensures the text spins around its center */ + +#member img { + width: 100px; + border-radius: 50%; } -@keyframes half-spin { - 0% { - transform: rotate(0deg); - } - 25% { - transform: rotate(10deg); - } - 50% { - transform: rotate(0deg); - } - 75% { - transform: rotate(-10deg); - } - 100% { - transform: rotate(0deg); - } +#member img:hover { + transform: scale(1.2); + filter: drop-shadow(0 0 3px #202020); +} +#member-role { + color: #888888; +} +#members { + display: grid; + grid-template-columns: auto auto auto auto; +} +#members div { + padding: 10px; + border-bottom: 1px solid var(--accent); + text-align: center; + margin: 20px; +} +#member:hover { + background: #222222; } diff --git a/tuxcord/static/javalsai.avif b/tuxcord/static/javalsai.avif new file mode 100644 index 0000000..e6fd7a9 Binary files /dev/null and b/tuxcord/static/javalsai.avif differ diff --git a/tuxcord/static/javalsai.png b/tuxcord/static/javalsai.png new file mode 100644 index 0000000..cb6dfc7 Binary files /dev/null and b/tuxcord/static/javalsai.png differ diff --git a/tuxcord/templates/ascii-art.html b/tuxcord/templates/ascii-art.html new file mode 100644 index 0000000..9d480ba --- /dev/null +++ b/tuxcord/templates/ascii-art.html @@ -0,0 +1,12 @@ +
+
+	{{ ascii_penguin }}
+	
+
+
+ +
+		{{ ascii_clippy }}
+		
+
+
diff --git a/tuxcord/templates/footer.html b/tuxcord/templates/footer.html index f2f47dc..b3dceea 100644 --- a/tuxcord/templates/footer.html +++ b/tuxcord/templates/footer.html @@ -1,5 +1,4 @@ -