Calendar container
This commit is contained in:
27
src/styles/containers/Calendar.module.css
Normal file
27
src/styles/containers/Calendar.module.css
Normal file
@ -0,0 +1,27 @@
|
||||
.container {
|
||||
grid-area: calendar;
|
||||
}
|
||||
.container table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.calendarDateHeader {
|
||||
font-weight: bold;
|
||||
font-size: 2vh;
|
||||
background: rgba(0, 0, 0, .1);
|
||||
}
|
||||
.calendarDateHeaderSub {
|
||||
font-size: 1.5vh;
|
||||
padding-top: 0.4vh;
|
||||
float: right;
|
||||
}
|
||||
.container table td {
|
||||
padding: 5px;
|
||||
}
|
||||
.container tr td:first-of-type {
|
||||
width: 100%;
|
||||
}
|
||||
.container tr.calendarEntry {
|
||||
border-top: 1px solid #000000;
|
||||
font-size: 1.8vh;
|
||||
}
|
Reference in New Issue
Block a user