timetable base

This commit is contained in:
imperosol
2025-03-03 15:24:22 +01:00
parent 289ffe1109
commit d3444f6bea
14 changed files with 222 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
#timetable {
.header {
background-color: white;
box-shadow: none;
width: 100%;
display: flex;
flex-direction: row;
gap: 0;
span {
flex: 1;
text-align: center;
}
}
.content {
position: relative;
text-align: center;
.slot {
background-color: cadetblue;
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
}
}
}