84 lines
1.1 KiB
CSS
84 lines
1.1 KiB
CSS
html {
|
|
background-color: #111;
|
|
color: #FFF;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.calendar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.calendar-pane-left {
|
|
flex-basis: 12.5%;
|
|
}
|
|
|
|
.calendar-pane-right {
|
|
flex-basis: 87.5%;
|
|
}
|
|
|
|
.tableview-sources {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
.tableview-sources-entry {
|
|
margin: 8px;
|
|
padding: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tableview-sources-entry:not(.tableview-sources-entry-active) {
|
|
filter: saturate(0);
|
|
}
|
|
|
|
.calendar table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.calendar-cell {
|
|
border: 1px solid #888;
|
|
padding: 8px;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.calendar-cell-day {
|
|
width: 13.5%;
|
|
}
|
|
|
|
.calendar-cell-week {
|
|
width: 5.5%;
|
|
}
|
|
|
|
.calendar-cell-regular {
|
|
width: 13.5%;
|
|
height: 120px;
|
|
}
|
|
|
|
.calendar-cell-today {
|
|
outline: 4px solid #FFF;
|
|
}
|
|
|
|
.calendar-day {
|
|
font-size: 0.75em;
|
|
cursor: help;
|
|
}
|
|
|
|
.calendar-events {
|
|
margin: 0; padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.calendar-event_entry {
|
|
margin: 4px;
|
|
padding: 4px;
|
|
border-radius: 2px;
|
|
font-size: 0.75em;
|
|
color: #FFF;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|