some clarification

This commit is contained in:
Pagwin 2024-12-24 02:57:29 -05:00
parent 3722367488
commit 6e587121ad
No known key found for this signature in database
GPG key ID: 81137023740CA260
3 changed files with 4 additions and 2 deletions

4
TODO
View file

@ -1,7 +1,8 @@
- move socials to header/footer as icons - fix socials icons
- icon on hover css - icon on hover css
-----cutoff----- -----cutoff-----
- add button to save articles for offline reading - add button to save articles for offline reading
- post jump points and table of contents (be wary of having this take up too much space on mobile) probably done with position: sticky in some way
- investigate fixing paragraph spacing https://zellwk.com/blog/2016-05-04-wrong-about-vertical-rhythm/ - investigate fixing paragraph spacing https://zellwk.com/blog/2016-05-04-wrong-about-vertical-rhythm/
- make overflow behavior in print so scrollbars go away and full content visible - make overflow behavior in print so scrollbars go away and full content visible
- make h1 elems in article content h2 elems or otherwise fix semantics - make h1 elems in article content h2 elems or otherwise fix semantics
@ -9,7 +10,6 @@
- stick stuff under h elements into section elems - stick stuff under h elements into section elems
- add aria roles where sensible https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles - add aria roles where sensible https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles
- Fix articles with inline html in them and/or links - Fix articles with inline html in them and/or links
- post jump points and table of contents (be wary of having this take up too much space on mobile) absolutely positioned on the left on desktop please
- ico? - ico?
- Make references(the tiny number things) appear to the side instead of the bottom on desktop, try to make it bottom of page in print or bottom of print otherwise, might need grid or float hard to say atm - Make references(the tiny number things) appear to the side instead of the bottom on desktop, try to make it bottom of page in print or bottom of print otherwise, might need grid or float hard to say atm
- analytics - analytics

1
notes
View file

@ -14,5 +14,6 @@ ET Book https://edwardtufte.github.io/et-book/
Hanuman https://fonts.google.com/specimen/Hanuman Hanuman https://fonts.google.com/specimen/Hanuman
TT2020 https://www.fontspace.com/tt2020-font-f42044 TT2020 https://www.fontspace.com/tt2020-font-f42044
Bookerly Bookerly
Roslindale
Palatino,"Palatino Linotype","Palatino LT STD",serif Palatino,"Palatino Linotype","Palatino LT STD",serif
https://fonts.google.com/specimen/Tinos?preview.size=79&stroke=Serif https://fonts.google.com/specimen/Tinos?preview.size=79&stroke=Serif

View file

@ -43,6 +43,7 @@ footer {
display: grid; display: grid;
justify-content: center; justify-content: center;
align-content: center; align-content: center;
/*footer isn't a keyword it's just the string I chose*/
grid-template-areas: "footer" grid-template-areas: "footer"
grid-template-columns: 1fr; grid-template-columns: 1fr;
grid-template-rows: 1fr; grid-template-rows: 1fr;