diff options
author | Daniel Schadt <kingdread@gmx.de> | 2024-11-13 22:28:21 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2024-11-13 22:28:21 +0100 |
commit | c108d1a75791e249aedd8102d5c363eabf36a217 (patch) | |
tree | 9c16dbf878408725bc025aec62fc23f9868c5d7c /asset-sources/theme.scss | |
parent | d1a07597cd787bc45466480fb0aca842976dd039 (diff) | |
download | fietsboek-c108d1a75791e249aedd8102d5c363eabf36a217.tar.gz fietsboek-c108d1a75791e249aedd8102d5c363eabf36a217.tar.bz2 fietsboek-c108d1a75791e249aedd8102d5c363eabf36a217.zip |
first draft of calendar
Diffstat (limited to 'asset-sources/theme.scss')
-rw-r--r-- | asset-sources/theme.scss | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 25353d7..f5b33da 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -158,6 +158,25 @@ strong { text-align: right; } +.profile-calendar { + width: 100%; + + .calendar-cell, .calendar-cell-empty { + height: 150px; + width: calc(100%/7); + } + + .calendar-cell { + border: 1px solid gray; + vertical-align: top; + + .calendar-date { + font-size: 140%; + font-weight: bold; + } + } +} + /* Ensure a consistent width of the cells in the browse view. */ .browse-summary th, .browse-summary td { width: 25%; |