This commit is contained in:
2026-01-02 18:21:23 -08:00
parent 32c23ffe6c
commit 65ee74026c
5 changed files with 11 additions and 3 deletions

View File

@ -44,5 +44,7 @@
</li> </li>
</ol> </ol>
</main> </main>
<footer id="footer"><!-- auto populated by nav.js --></footer>
</body> </body>
</html> </html>

View File

@ -37,5 +37,7 @@
<p><span class="card">Card two</span> has 16 total recipients.</p> <p><span class="card">Card two</span> has 16 total recipients.</p>
</main> </main>
<footer id="footer"><!-- auto populated by nav.js --></footer>
</body> </body>
</html> </html>

View File

@ -103,8 +103,6 @@
<p>if airtable is in any way inaccessible to you, please <a target="_blank" href="https://leecat.art/contact">reach out directly to lee</a>.</p> <p>if airtable is in any way inaccessible to you, please <a target="_blank" href="https://leecat.art/contact">reach out directly to lee</a>.</p>
</main> </main>
<footer> <footer id="footer"><!-- auto populated by nav.js --></footer>
<p>brought to you in 2026</p>
</footer>
</body> </body>
</html> </html>

View File

@ -123,3 +123,8 @@ document.addEventListener("keydown", (event) => {
window.addEventListener("click", (event) => { window.addEventListener("click", (event) => {
if (!event.target.matches("#drop-button")) closeDropdown(); if (!event.target.matches("#drop-button")) closeDropdown();
}); });
/* footer */
let footerHTML = "<p>brought to you in 2026</p>";
document.getElementById("footer").innerHTML = footerHTML;

View File

@ -27,6 +27,7 @@ main {
width: 65%; width: 65%;
margin: 0 auto 2rem; margin: 0 auto 2rem;
scroll-margin-top: 1.5rem; scroll-margin-top: 1.5rem;
min-height: 50vh;
} }
@media (max-width: 650px) { @media (max-width: 650px) {