Work on implementing "Notes" aka the feed

This commit is contained in:
2026-02-22 23:33:08 -06:00
parent 597976b1b8
commit 54222db887
6 changed files with 244 additions and 149 deletions

36
src/assets/css/feed.css Normal file
View File

@@ -0,0 +1,36 @@
.feed .post {
margin: 30px 0;
background: var(--background-2);
padding: 15px;
border: 1px solid var(--background-3);
}
.feed .post .tag, .feed .secondary {
color: var(--color-2);
font-style: italic;
text-decoration: none;
}
.feed .secondary {
font-size: 0.8em;
}
.feed .post h2::before {
content: '';
margin: 0;
padding: 0;
}
.feed .post h2 {
margin-top: 15px;
font-size: 1.3em;
}
.feed .post .footer {
margin-top: 15px;
}
.feed .post .footer .sep {
margin: 0 7px;
}