diff options
Diffstat (limited to 'web/static/style.css')
| -rw-r--r-- | web/static/style.css | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/web/static/style.css b/web/static/style.css new file mode 100644 index 0000000..47bf506 --- /dev/null +++ b/web/static/style.css @@ -0,0 +1,45 @@ +:root { + --primary-color: #e2e9d9; + --calendar-border: black; +} + +* { + margin: 0; + padding: 0; +} + +.calendar-wrapper { + display: flex; + flex-direction: row; + flex-wrap: wrap; + gap: 16px; +} + +.calendar { + border: var(--calendar-border) solid 1px; + border-spacing: 0; +} + +.calendar>caption { + border: var(--calendar-border) solid 1px; + border-bottom: none; + background: var(--primary-color); +} + +.calendar td, +.calendar th { + border: var(--calendar-border) solid 1px; + border-left: unset; + border-top: unset; + padding: 2px; + text-align: center; +} + +.calendar td:last-child, +.calendar th:last-child { + border-right: unset; +} + +.calendar tr:last-child td { + border-bottom: unset; +}
\ No newline at end of file |
