27 lines
342 B
SCSS
27 lines
342 B
SCSS
|
.calendar-window {
|
||
|
@include wshadow;
|
||
|
background-color: $bg;
|
||
|
border: 1px solid $border;
|
||
|
border-radius: 16px;
|
||
|
color: $fg;
|
||
|
padding: .2em;
|
||
|
}
|
||
|
|
||
|
calendar {
|
||
|
padding: 5px;
|
||
|
|
||
|
:selected {
|
||
|
color: $mauve;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
color: $subtext1;
|
||
|
}
|
||
|
|
||
|
.highlight {
|
||
|
color: $maroon;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
}
|