summaryrefslogtreecommitdiff
path: root/assets/css/pages/changelog.css
diff options
context:
space:
mode:
authorsillylaird <sillylaird@fastmail.ca>2026-02-03 21:27:57 -0500
committersillylaird <sillylaird@fastmail.ca>2026-02-03 21:27:57 -0500
commit720d752748b793a2f5cf3cc14cb75ad86e8919c0 (patch)
tree29120103307cb17e7d6c283cc198ec2484f934cd /assets/css/pages/changelog.css
First commit
Diffstat (limited to 'assets/css/pages/changelog.css')
-rw-r--r--assets/css/pages/changelog.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/assets/css/pages/changelog.css b/assets/css/pages/changelog.css
new file mode 100644
index 0000000..78b2ff4
--- /dev/null
+++ b/assets/css/pages/changelog.css
@@ -0,0 +1,19 @@
+.changelog-list{ list-style: none; padding: 0; margin: 0; }
+
+.changelog-entry{
+ display: grid;
+ grid-template-columns: 12ch 1fr;
+ gap: var(--space-lg);
+ padding: var(--space-md) 0;
+ border-bottom: 1px dotted rgba(0,0,0,.25);
+}
+
+.changelog-entry:last-child{ border-bottom: none; }
+
+.changelog-entry time{ font-weight: 700; color: var(--ink); white-space: nowrap; }
+
+.changelog-entry .text{ color: var(--muted); }
+
+@media (max-width: 560px){
+ .changelog-entry{ grid-template-columns: 1fr; }
+}