- adjusted body margins so that short pages shouldn't have a scroll bar
- fixed footer links to be proper list
- fixed footer list css
return ` </main>
<footer>
<ol>
- <a href="https://git.squeep.com/?p=websub-hub;a=tree">Development Repository</a>
- </ol>
- <ol>
- <a href="https://squeep.com/">A Squeep Infrastructure Component</a>
- </ol>
- <ol>
- ©<time datetime="2021">ⅯⅯⅩⅩⅠ</time>
+ <li>
+ <a href="https://git.squeep.com/?p=websub-hub;a=tree">Development Repository</a>
+ </li>
+ <li>
+ <a href="https://squeep.com/">A Squeep Infrastructure Component</a>
+ </li>
+ <li>
+ ©<time datetime="2021">ⅯⅯⅩⅩⅠ</time>
+ </li>
</ol>
</footer>`;
}
body {
background-color: #fff;
font-family: Helvetica, Verdana, sans-serif;
- margin: 1em;
+ margin: 0 1em 0 1em;
min-height: 100vh;
display: flex;
flex-direction: column;
text-align: center;
}
h1 {
- margin-top: 1.3em;
- margin-bottom: 2.5em;
+ margin-top: 1em;
+ margin-bottom: 1.25em;
text-align: center;
}
h2 {
background-color: #ddd;
+ padding: .25em 0 .1em 0.25em;
}
main {
flex-grow: 1;
width: 100%;
border-top: 4px dotted #666;
}
-footer nav ol {
+footer ol {
list-style-type: none;
- margin: 0;
+ margin: .5em;
padding: 0;
- border: 1px solid #000;
}