minor layout fixes

This commit is contained in:
Pagwin 2024-11-29 23:12:13 -05:00
parent 9bd6d780cb
commit 4eedb1faa0
No known key found for this signature in database
GPG key ID: 81137023740CA260
3 changed files with 25 additions and 8 deletions

3
TODO
View file

@ -1,3 +1,6 @@
- sitemap
- robots.txt
- make h1 elems in article content h2 elems
- 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) - post jump points and table of contents (be wary of having this take up too much space on mobile)
- ico? - ico?

View file

@ -101,6 +101,12 @@ time {
/* not sure if I want everything centered or just code blocks but I like everything centered atm*/ /* not sure if I want everything centered or just code blocks but I like everything centered atm*/
justify-content: center; justify-content: center;
align-items: center; align-items: center;
}
main {
max-width: -moz-available;
max-width: -webkit-fill-available;;
max-width: fill-available;
} }
header { header {
max-width: -moz-available; max-width: -moz-available;
@ -180,6 +186,12 @@ p {
line-height: 1.5; line-height: 1.5;
} }
footer {
display: flex;
margin:20px;
/*width:100%;*/
}
} }
/* we really want to make sure this doesn't stick around when colors load in regardless of when/how colors get loaded in*/ /* we really want to make sure this doesn't stick around when colors load in regardless of when/how colors get loaded in*/
@layer pre-load{ @layer pre-load{

View file

@ -29,14 +29,16 @@
<a class="nav-link" href="/links/">Links</a> <a class="nav-link" href="/links/">Links</a>
</div> </div>
<div id="content-outer"> <div id="content-outer">
<main id="content"> <div id="content">
{{{content}}} <main>
</main> {{{content}}}
<footer style="margin:20px;"> </main>
<!-- don't bother with anchor on outside anchor is inside svg--> <footer>
<a href="/index.xml"> <object width="100" height="100" class="icon" data="/static/images/rss.svg">rss <!-- don't bother with anchor on outside anchor is inside svg-->
feed</object></a> <a href="/index.xml"> <object width="100" height="100" class="icon" data="/static/images/rss.svg">rss
</footer> feed</object></a>
</footer>
</div>
</div> </div>
</body> </body>