Add table to main page

This commit is contained in:
Joscha 2024-05-04 22:48:23 +02:00
parent ee40d1f970
commit 388f4940bf
2 changed files with 57 additions and 0 deletions

View file

@ -48,3 +48,31 @@ label {
#i-hourlyrate {
width: 8ch;
}
#table {
display: grid;
grid: auto-flow / 3fr 1fr 1fr 1fr 1fr 1fr;
border: 1px solid black;
margin: 4mm 0;
font-weight: bold;
text-align: center;
}
#table > * {
border: 1px solid black;
padding: 1px;
}
#task {
grid-row: 1 / 3;
display: flex;
justify-content: center;
align-items: center;
}
.i-task {
box-sizing: border-box;
width: 100%;
}
.i-day {
width: 6ch;
}
.i-dur {
width: 8ch;
}