add attribution page
This commit is contained in:
@ -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() {
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user