2024-08-17 06:42:26 +00:00
|
|
|
.week {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.day {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2024-08-20 08:15:33 +00:00
|
|
|
align-items: flex-start;
|
|
|
|
|
justify-content: flex-start;
|
2024-08-18 04:51:29 +00:00
|
|
|
gap: 1px;
|
2024-08-17 06:42:26 +00:00
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell {
|
|
|
|
|
display: flex;
|
2024-08-18 17:38:28 +00:00
|
|
|
background-color: var(--base75);
|
2024-08-17 06:42:26 +00:00
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
2024-08-18 07:15:20 +00:00
|
|
|
margin: auto;
|
2024-08-18 17:38:28 +00:00
|
|
|
border-radius: 100%;
|
2024-08-20 08:15:33 +00:00
|
|
|
align-items: flex-start;
|
2024-08-17 06:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hour {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: var(--font-color300);
|
2024-08-18 04:32:42 +00:00
|
|
|
height: 20px;
|
2024-08-17 06:42:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.block {
|
|
|
|
|
background-color: var(--primary400);
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
2024-08-18 17:38:28 +00:00
|
|
|
border-radius: 100%;
|
2024-08-17 06:42:26 +00:00
|
|
|
}
|