summaryrefslogtreecommitdiff
path: root/http/src/css/feed.uppcss
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-05-12 21:29:38 +0100
committerJoe Carstairs <me@joeac.net>2026-05-12 21:29:38 +0100
commit3759fd137c3aa05145480e87ab87261fbbcc4ada (patch)
tree16d133b0b2d4bfc072893bd408f1520514b076fa /http/src/css/feed.uppcss
parenteb48cdb9a370c37a129637cf0de91e5023306323 (diff)
mkws processes css
Diffstat (limited to 'http/src/css/feed.uppcss')
-rw-r--r--http/src/css/feed.uppcss36
1 files changed, 36 insertions, 0 deletions
diff --git a/http/src/css/feed.uppcss b/http/src/css/feed.uppcss
new file mode 100644
index 0000000..39294be
--- /dev/null
+++ b/http/src/css/feed.uppcss
@@ -0,0 +1,36 @@
+/* Assumes there is at most one level of subheading for sub-dividing entries */
+.h-feed :is(h2, h3, h4, h5, h6) {
+ margin-block-start: var(--spacing-block-md);
+}
+
+.h-feed .h-entry {
+ display: flex;
+ flex-direction: column;
+}
+
+.h-feed .h-entry + .h-entry {
+ margin-block-start: var(--spacing-block-md);
+}
+
+.h-feed .h-entry > * {
+ order: 1;
+ margin: 0;
+}
+
+.h-feed .h-entry .dt-published {
+ order: 0;
+ font-size: var(--font-size-sm);
+}
+
+.h-feed .h-entry .p-name {
+ font-size: var(--font-size-md);
+ font-weight: 400;
+}
+
+.h-feed .full-feed-link {
+ text-align: end;
+}
+
+.h-feed :is(a.full-feed-link, .full-feed-link a)::after {
+ content: " >";
+}