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:
48
src/ver/0.0.2/static/styles/view_server.css
Normal file
48
src/ver/0.0.2/static/styles/view_server.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user