Add TODOs to README and improve CSS layout for main content

This commit is contained in:
Christian Galo 2025-03-24 03:24:41 -05:00
parent 39771cfbe0
commit 5f1c1e2c86
2 changed files with 12 additions and 0 deletions

6
README
View File

@ -2,6 +2,12 @@
This is the source code for https://wiki.cafe.
# TODO:
- [ ] Implement dark mode
- [ ] Proper typography. Potentially use clamp. Research appropriate proportions.
- [ ] Add links to other sites.
- [ ] Support adding modification date to pages.
## Reference
Serve Hugo site with Docker

View File

@ -92,6 +92,7 @@ body {
display: flex;
flex-direction: column;
gap: 2rem;
justify-content: space-between;
}
h1,
@ -227,6 +228,11 @@ header {
}
}
/* Main Styles */
main {
flex: 1;
}
/* Footer Styles */
footer {