3 Commits

Author SHA1 Message Date
jamie 9205234b2d Merge pull request 'v1.1.1' (#7) from v1.1.1 into master
Reviewed-on: #7
2026-01-16 10:55:07 +00:00
jamie beb592402e fix: 🐛 center footer
Release / release (pull_request) Successful in 1m17s
2026-01-16 10:54:20 +00:00
jamie dc5092468a style: reduce padding in navigation and container elements 2026-01-16 10:48:00 +00:00
2 changed files with 13 additions and 8 deletions
+3 -3
View File
@@ -161,7 +161,7 @@ nav {
background-color: var(--md-sys-color-surface-container);
color: var(--md-sys-color-on-surface);
box-shadow: var(--md-sys-elevation-level2);
padding: 0 2rem;
padding: 0 1rem;
height: 64px;
display: flex;
align-items: center;
@@ -555,13 +555,13 @@ nav {
.container {
max-width: 1200px;
margin: 0 1rem;
padding: 0 2rem;
padding: 0 1rem;
}
.container-wide {
max-width: 1600px;
margin: 0 auto;
padding: 0 2rem;
padding: 0 1rem;
}
/* Typography */
+10 -5
View File
@@ -68,11 +68,16 @@
</main>
<div id="notifications" style="position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 2100;"></div>
{% block scripts %}{% endblock %}
<footer class="site-footer" style="background-color: var(--md-sys-color-surface-container); border-top: 1px solid var(--md-sys-color-outline-variant); padding: 1rem 0; text-align: center; color: var(--md-sys-color-on-surface-variant); font-size: 0.875rem; margin-top: auto;">
<div class="container">
<span>&copy; <script>document.write(new Date().getFullYear());</script> <a href="https://www.jdbnet.co.uk" target="_blank">JDB-NET</a></span>
<span style="margin-left: 0.75rem;">
<a href="https://git.jdbnet.co.uk/jamie/encoder" target="_blank">{{ version }}</a>
<footer style="background-color: var(--md-sys-color-surface-container); border-top: 1px solid var(--md-sys-color-outline-variant); padding: 1rem;">
<div class="flex justify-center items-center">
<span style="font-size: 0.875rem; color: var(--md-sys-color-on-surface-variant);">
© <script>document.write(new Date().getFullYear());</script>
<a href="https://www.jdbnet.co.uk" target="_blank" rel="noopener noreferrer" style="color: var(--md-sys-color-primary); text-decoration: none;">
JDB-NET
</a>
<span style="margin: 0 0.5rem;"></span>
<a href="https://git.jdbnet.co.uk/jamie/encoder" target="_blank" rel="noopener noreferrer" style="color: var(--md-sys-color-primary); text-decoration: none;">{{ version }}</a>
</span>
</div>
</footer>