42 lines
810 B
SCSS
42 lines
810 B
SCSS
|
|
.calendar-box {
|
|
padding: 10px;
|
|
background: rgba($background, 0.6);
|
|
border-radius: 16px;
|
|
|
|
& > .time {
|
|
font-size: 42px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
& > .date {
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.month-calendar {
|
|
border-radius: 12px;
|
|
padding: 0 5px;
|
|
padding-top: 10px;
|
|
font-weight: 500;
|
|
|
|
& > .header {
|
|
background: unset;
|
|
border-radius: 6px;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom: solid .5px gray;
|
|
}
|
|
|
|
&:hover {
|
|
background: $color2;
|
|
}
|
|
|
|
// Selected day / Current day
|
|
&:selected {
|
|
border: 1px solid $color2;
|
|
}
|
|
}
|
|
}
|