Bare bones backend. Frontend just starting.

This commit is contained in:
Ryan Pandya
2023-05-02 11:29:10 -07:00
parent ed30556bd3
commit aed2080b53
24 changed files with 982 additions and 101 deletions
+45 -4
View File
@@ -12,7 +12,7 @@ body{
table {
font-family: "Monospace";
border-collapse: collapse;
width: 100%;
font-size: 11pt;
}
th{
@@ -26,10 +26,51 @@ tr.htmx-swapping td {
td, th {
border: 1px solid #383737;
text-align: left;
padding: 8px;
text-align: center;
padding: 4px;
min-width: 4em;
}
td.now, th.now{
background: var(--fg);
color: var(--bg);
border-left: 0px;
border-right: 0px;
}
td.day-note{
width: max-content;
}
tr:nth-child(even) {
background-color: #dddddd;
background-color: #2f3941;
}
input.update-entry-form{
width: 3em;
text-align: center;
}
div#color-chooser{
position:absolute;
display:flex;
margin: 2px;
}
.color-choice{
padding: 1px 5px;
border: 1px solid black;
}
.color-choice:hover{
border: 1px solid white;
}
div.upcase{ text-transform: uppercase;}
div#table{font-family:monospace;display: grid;grid-template-columns: repeat(28, 1fr);}
div#header{border-bottom:2px solid gray;}
div.table-row{border-bottom:1px solid gray;}
div.cell{
width: 75px;
font-size:10pt;
text-align: center; padding: 1px 5px}
.hot-display-license-info{display:none;}