about summary refs log tree commit diff stats
path: root/frontend/static
diff options
context:
space:
mode:
authorAlan Pearce2024-05-04 15:32:41 +0200
committerAlan Pearce2024-05-04 15:32:41 +0200
commitb682ed936d8185e91331e9f66fc0e13072f8b545 (patch)
treea5d13a7187c3b9222cd2587ed1c4569329914aa7 /frontend/static
parent5b9e67fd5129dec75169a1a070c70f910dff6da2 (diff)
downloadsearchix-b682ed936d8185e91331e9f66fc0e13072f8b545.tar.lz
searchix-b682ed936d8185e91331e9f66fc0e13072f8b545.tar.zst
searchix-b682ed936d8185e91331e9f66fc0e13072f8b545.zip
feat: show metadata in grid
Diffstat (limited to 'frontend/static')
-rw-r--r--frontend/static/style.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/static/style.css b/frontend/static/style.css
index 96b7c9b..e72df60 100644
--- a/frontend/static/style.css
+++ b/frontend/static/style.css
@@ -5,3 +5,17 @@ form {
 input[type="search"] {
   width: 100%;
 }
+
+dt::after {
+  content: ": ";
+}
+
+dd {
+  margin-inline-start: 1rem;
+}
+
+dl {
+  display: grid;
+  grid-template-rows: 100%;
+  grid-template-columns: max-content 1fr;
+}