add attribution page

This commit is contained in:
2026-01-22 19:15:05 -08:00
parent aeb028d0fe
commit 2abe5bedcd
3 changed files with 72 additions and 0 deletions

View File

@ -82,6 +82,7 @@ const footerHTML = `
<a href="mailto:beall.greenhouses@gmail.com">email us!</a>
</p>
<p>brought to you in 2026</p>
<p><a href="/attribution">site attribution</a></p>
`
const populateFooter = function() {

View File

@ -112,6 +112,14 @@ footer {
width: 95%;
margin: 0 auto;
padding: 1rem 0;
display: flex;
justify-content: center;
}
@media (max-width: 750px) {
footer {
flex-flow: column;
}
}
footer p {
@ -122,6 +130,15 @@ footer p {
padding: .25rem;
}
@media (min-width: 751px) {
footer p:nth-child(2)::before {
content: "● " / "";
}
footer p:nth-child(2)::after {
content: " ●" / "";
}
}
footer a {
color: var(--color-bg);
text-decoration-color: var(--color-accent-flipped);