summaryrefslogtreecommitdiffstats
path: root/api/handlers
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.net>2025-09-10 00:55:52 +0100
committerLeonardo Bishop <me@leonardobishop.net>2025-09-10 00:55:52 +0100
commit1d23e77ae7edeb3fc2d7c6111df70e97a87215c9 (patch)
tree78811c07e483025db11796473e892be133f61ae0 /api/handlers
parentd122d841e8b7dd7f8942b6f2fa84220f95f2cae4 (diff)
Update CSS
Diffstat (limited to 'api/handlers')
-rw-r--r--api/handlers/html.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/api/handlers/html.go b/api/handlers/html.go
index 2f6688c..dc40d74 100644
--- a/api/handlers/html.go
+++ b/api/handlers/html.go
@@ -8,6 +8,12 @@ import (
)
const style = `<style>
+.entry-group {
+ display: flex;
+ flex-direction: column;
+ gap: 0.5rem;
+}
+
.entry {
display: grid;
grid-template:
@@ -17,15 +23,18 @@ const style = `<style>
.entry-title {
grid-area: title;
+ font-size: medium;
}
.entry-date {
grid-area: date;
justify-self: end;
+ font-size: medium;
}
.entry-description {
grid-area: desc;
+ font-size: small;
}
</style>`