summaryrefslogtreecommitdiff
path: root/web/static/style.css
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-08-04 16:07:48 +0500
committerilotterytea <iltsu@alright.party>2025-08-04 16:07:48 +0500
commitab2fa2aad371eb803c0e52c326075907a3583b8b (patch)
tree67db631c10722ba05fcc9bcc4b6cd3402a602862 /web/static/style.css
parentf79c8898cf716c142b47ac239182ce9933e5f8c0 (diff)
feat: show room log timestamps
Diffstat (limited to 'web/static/style.css')
-rw-r--r--web/static/style.css45
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