feat: add initial Flask web app for Discord server listing

Introduces backend with server retrieval and API integration, front-end UI with templates and styles, and configuration files for deployment.
This commit is contained in:
2025-09-03 05:18:39 -04:00
parent 334782fe5c
commit ba286278cf
17 changed files with 2329 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
.container {
margin-top : 10px;
background: rgba(211, 211, 211, 0.55);
}
#serverName {
text-align: center;
font-size: 20px;
font-weight: 600;
margin: 10px;
}
.info {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.info-column {
display: flex;
flex-direction: column;
flex-wrap: wrap;
height: 100%;
margin-left: 30px;
width: 80%;
margin-top: 20px;
}
.info > img {
height: 200px;
margin-bottom: 10px;
}
.info-column > a {
height: 100%;
}
.info-column > .card-body {
margin-top: 10px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
visibility: 55%;
}
.card-body > a {
margin-right: 10px;
}