Completely re-structured the project from scratch, wrote a better bootstrap script, changed configuration format to yaml, improved Caddyfile, and more. #15 #16 #20

This commit is contained in:
ChaoticByte 2023-02-11 17:23:57 +01:00
parent 0012214f9b
commit 5572fec9c1
91 changed files with 739 additions and 1345 deletions

View file

@ -0,0 +1,53 @@
.maincontainer {
min-width: 70vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
}
.tablescontainer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
width: 95%;
margin-top: 2rem;
}
.statisticstable {
margin-bottom: 2rem;
padding-bottom: 1rem;
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
text-align: center;
}
.statisticstable h1 {
margin-top: 0;
font-size: 1.2rem;
text-align: left;
min-width: 10rem;
text-align: center;
}
.statisticstable table {
min-width: 20vw;
width: fit-content;
}
.statisticstable th:last-child {
text-align: right;
}
.statisticstable td:last-child {
text-align: right;
}
@media only screen and (max-width: 700px) {
.statisticstable h1 {
min-width: 90vw;
}
.statisticstable table {
min-width: 80vw;
}
.statisticstable {
margin-bottom: 2rem;
padding-bottom: 1rem;
}
}