mirror of
https://github.com/ae-utbm/sith.git
synced 2025-06-27 13:45:20 +00:00
27 lines
440 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|