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:
parent
0012214f9b
commit
5572fec9c1
91 changed files with 739 additions and 1345 deletions
61
app/static/css/appform.css
Normal file
61
app/static/css/appform.css
Normal file
|
@ -0,0 +1,61 @@
|
|||
.appform {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: max-content;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
.appform > .forminfo {
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
margin: .4rem 0;
|
||||
}
|
||||
.forminfo > span:first-child {
|
||||
margin-right: 1rem;
|
||||
}
|
||||
.forminfo > span:last-child {
|
||||
float: right;
|
||||
}
|
||||
.appform > .forminput {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: .8rem 0;
|
||||
gap: 1rem;
|
||||
}
|
||||
.appform > .statusinfo {
|
||||
margin-top: .5rem;
|
||||
}
|
||||
.appform > .formbuttons {
|
||||
border-top: 1px solid var(--glass-border-color);
|
||||
padding-top: 1rem;
|
||||
margin-top: 1rem;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
.formbuttons button, .formbuttons .button {
|
||||
box-sizing: content-box;
|
||||
font-size: 1rem;
|
||||
width: fit-content;
|
||||
}
|
||||
.formheading {
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
margin-top: 0;
|
||||
}
|
||||
@media only screen and (max-width: 700px) {
|
||||
.appform > .forminput {
|
||||
flex-direction: column;
|
||||
gap: .5rem;
|
||||
}
|
||||
.formheading {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue