Sith/timetable/static/timetable/css/generator.scss
2025-06-26 18:43:23 +02:00

27 lines
440 B
SCSS

#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;
}
}
}