Made a flask server thing, gonna port it to django though ig.

This commit is contained in:
2025-10-21 23:28:37 +01:00
parent fb54dd37ff
commit ddf4caba62
15 changed files with 204 additions and 3 deletions

50
static/index.css Normal file
View File

@@ -0,0 +1,50 @@
:root {
--accent: #28ebb5
}
body {
background: #000000;
color: #ffffff;
padding-bottom: 100px;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
background: black;
}
#footer-links {
margin: 10px;
}
hr {
color: #ffffff;
}
.tuxcord-image {
position: absolute;
top: 0;
left: 650px;
}
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 */
}
@keyframes half-spin {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(10deg);
}
50% {
transform: rotate(0deg);
}
75% {
transform: rotate(-10deg);
}
100% {
transform: rotate(0deg);
}
}