Move custom styling and scripting into pages

The Zakarya page is a work in progress
This commit is contained in:
2025-03-18 17:10:59 -07:00
parent 6177d407d2
commit 765b3542d1
11 changed files with 555 additions and 558 deletions

View File

@ -5,3 +5,32 @@
<a href="mailto:support@colormatic.org">contact@colormatic.org</a>
</p>
</footer>
<style lang="scss">
@use "../style/global.scss";
footer {
display: flex;
justify-content: space-between;
border-top: solid 1px global.$text-color;
width: 95%;
padding: 4px;
margin: 0 auto;
}
footer p {
color: global.$text-color;
padding: 4px 10%;
}
@media screen and (max-width: global.$mobile-width) {
footer {
flex-direction: column;
}
footer p {
text-align: center;
padding: 4px;
margin: 4px;
}
}
</style>