init: migrate, flatten history and tweak from old repo

Old repo at <https://git.javalsai.tuxcord.net/deadvey/tuxcord.net>

Co-authored-by: DeaDvey <deadvey@deadvey.com>
This commit is contained in:
2026-05-04 00:26:52 +02:00
commit cefda86795
22 changed files with 1089 additions and 0 deletions
+105
View File
@@ -0,0 +1,105 @@
:root {
--accent: #28ebb5;
--accent2: #3a7dff;
}
body {
background: #000000;
color: #ffffff;
padding-bottom: 100px;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
background: black;
}
h1 {
font-size: 20px;
}
ul {
list-style-type: none;
}
#footer-links {
margin: 0px;
padding: 5px;
border-top: 1px solid white;
}
hr {
color: #ffffff;
}
#ascii-penguin {
position: absolute;
top: 0;
left: 650px;
}
#ascii-clippy {
position: absolute;
top: 75px;
left: 861px;
font-size: 10px;
transform: rotate(-36deg);
animation: rotate 2s linear infinite;
animation-play-state: paused;
width: 40px;
}
#ascii-clippy:hover {
animation-play-state: running;
}
#ascii-exclamation {
display: none;
position: absolute;
left: 548px;
top: 11px;
}
#ascii-tuxcord:hover {
#ascii-exclamation {
display: inline;
}
}
a {
text-decoration: none;
color: var(--accent);
}
a:hover {
color: var(--accent2);
}
#url-bar {
background-color: #444444;
padding: 0px 30px 0px 10px;
}
#member img {
width: 100px;
border-radius: 50%;
}
#member-role {
color: #888888;
}
#members {
display: grid;
grid-template-columns: auto auto auto auto auto;
}
#members div {
padding: 10px;
border-bottom: 1px solid white;
text-align: center;
margin: 20px;
}
#member:hover {
animation-name: grow;
border-bottom: 1px solid white;
animation-duration: 1s;
background: #222222;
}
#member:active {
background: #666666;
}
@keyframes grow {
from {transform: scale(1);}
to {transform: scale(1.2);}
}
@keyframes rotate {
from { transform: rotate(-36deg); }
to { transform: rotate(324deg); }
}