Add a calendar to schedule a recipe to a chosen date (WIP)

This commit is contained in:
Greg Burri 2025-01-23 03:01:15 +01:00
parent d9449de02b
commit 9d3f9e9c60
15 changed files with 441 additions and 62 deletions

View file

@ -0,0 +1,46 @@
.calendar {
.month-selector {
width: 100%;
text-align: center;
.prev {
float: left;
}
.next {
float: right;
}
.month {
display: none;
}
.month.current {
display: inline;
}
}
ul.weekdays {
margin: 0;
padding: 20px 0;
li {
display: inline-block;
width: 14%;
text-align: center;
margin: 0;
}
}
ul.days {
margin: 0;
padding: 20px 0;
li {
display: inline-block;
width: 14%;
text-align: center;
margin: 0;
}
}
}