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
46
app/static/css/index.css
Normal file
46
app/static/css/index.css
Normal file
|
@ -0,0 +1,46 @@
|
|||
.availabledrinkslist {
|
||||
width: 50%;
|
||||
max-width: 45rem;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: start;
|
||||
align-items: center;
|
||||
}
|
||||
.availabledrinkslist li {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: fit-content;
|
||||
margin-bottom: .6rem;
|
||||
}
|
||||
.availabledrinkslist li a {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
align-items: center;
|
||||
justify-content: start;
|
||||
color: var(--color);
|
||||
padding: .8rem 1.1rem;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
}
|
||||
.availabledrinkslist li a span:first-child {
|
||||
margin-right: 1rem !important;
|
||||
text-align: left;
|
||||
}
|
||||
.availabledrinkslist li a span:last-child {
|
||||
margin-left: auto;
|
||||
text-align: right;
|
||||
font-size: 1rem;
|
||||
}
|
||||
/* mobile devices */
|
||||
@media only screen and (max-width: 700px) {
|
||||
.availabledrinkslist {
|
||||
width: 95%;
|
||||
}
|
||||
.availabledrinkslist li a {
|
||||
width: calc(100vw - (2 * .8rem)) !important;
|
||||
padding: .8rem !important;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue