state sync, many changes:

* separated css/js/rule files to pak file (glorified zip) to reduce full rebuilds
* implemented build cache
* some frontend UI spiffing up
This commit is contained in:
2025-09-02 16:44:28 -07:00
parent 621d65b9e5
commit 0bd2f4827b
16 changed files with 226 additions and 42 deletions

View File

@@ -35,13 +35,30 @@ div#main-content {
padding-left: 5px;
}
div#main-day-stats {
div#main-header {
display: flex;
flex-direction: row;
min-height: 100px;
vertical-align: middle;
border-bottom: 0.125em solid rgb(192,192,192);
}
div#main-day-stats {
width: 100%;
margin-top: auto;
margin-bottom: auto;
vertical-align: middle;
}
div#main-button-bar {
display: flex;
flex-direction: row;
min-height: 125px;
vertical-align: middle;
}
div#main-log {
display: flex;
flex-direction: column-reverse;
@@ -109,4 +126,12 @@ div#modal {
height: 90%;
border: 1.25em double rgba(192, 192, 192, 255);
background-color: rgba(255, 255, 255, 255);
}
button.main-bar {
width: 2.5em;
height: 2.5em;
background-color: rgba(0,0,0,0);
border: 1px solid black;
font-size: 2em;
}