Compare commits

...

2 commits

Author SHA1 Message Date
5cdcab9907 more page styles 2024-09-15 16:11:29 +02:00
c91caf72e0 basic footer styles 2024-09-15 15:59:38 +02:00
3 changed files with 44 additions and 8 deletions

View file

@ -1,5 +1,5 @@
<footer> <footer>
<div> <div class="footer-container">
{% set otherLang = page.url | locale_links | first %} {% set otherLang = page.url | locale_links | first %}
<a href="{{otherLang.url}}" lang="{{otherLang.lang}}" hreflang="{{otherLang.lang}}"> <a href="{{otherLang.url}}" lang="{{otherLang.lang}}" hreflang="{{otherLang.lang}}">
{% if otherLang.lang == "de" %} {% if otherLang.lang == "de" %}
@ -8,15 +8,42 @@
English Version 🇬🇧/🇺🇸 English Version 🇬🇧/🇺🇸
{% endif %} {% endif %}
</a> </a>
<nav> <nav id="footerNav">
{{ collections.footerNav | pageLang | eleventyNavigation | eleventyNavigationToHtml | safe }} {{ collections.footerNav | pageLang | eleventyNavigation | eleventyNavigationToHtml | safe }}
</nav> </nav>
</div> <span>
<div>
<p>
Design: Design:
<a href="https://designtoasty.de" target="_blank" rel="noreferrer">Designtoasty</a> <a href="https://designtoasty.de" target="_blank" rel="noreferrer">Designtoasty</a>
</p> </span>
<p>Made with 🧉 and 🌈 in Dresden</p> <span>Made with 🧉 and 🌈 in Dresden</span>
</div> </div>
</footer> </footer>
{% css %}
footer {
border-top: 1px dotted rgba(0,0,0,.15);
padding: 4rem 0;
}
#footerNav ul {
margin: 0;
padding: 0;
display: flex;
gap: 1em;
}
#footerNav li {
display: inline;
}
.footer-container {
max-width: var(--page-width);
margin-left: auto;
margin-right: auto;
display: grid;
grid-template-columns: auto auto;
grid-auto-flow: column;
grid-template-rows: 1fr 1fr;
gap: 1em;
}
.footer-container > :nth-last-child(-n + 2) {
text-align: end;
}
{% endcss %}

View file

@ -16,7 +16,7 @@ header {
padding: 2rem 0; padding: 2rem 0;
} }
.header-container { .header-container {
max-width: 75rem; max-width: var(--page-width);
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
display: flex; display: flex;

View file

@ -23,8 +23,17 @@ eleventyComputed:
</html> </html>
{% css %} {% css %}
:root {
--page-width: 75rem;
}
body { body {
font-family: sans-serif; font-family: sans-serif;
margin: 0; margin: 0;
font-size: 17px;
}
main {
max-width: var(--page-width);
margin-left: auto;
margin-right: auto;
} }
{% endcss %} {% endcss %}