fix blek! at footer position

This commit is contained in:
blek 2023-10-13 22:43:10 +10:00
parent 3f363fbe09
commit 57c08871be
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 33 additions and 25 deletions

View File

@ -225,9 +225,6 @@ p {
width: 100%; width: 100%;
} }
.footer svg { .footer svg {
position: absolute;
bottom: -10px;
right: 10%;
color: var(--header-color); color: var(--header-color);
transition: 500ms ease; transition: 500ms ease;
filter: brightness(1.2); filter: brightness(1.2);

View File

@ -15,7 +15,7 @@
<script src="/delay.js"></script> <script src="/delay.js"></script>
<title>blek! File</title> <title>blek! File</title>
<style> .footer svg { height: 32px } </style> <style> .footer svg { height: 32px; margin: 10px 0 } </style>
{% include "seotags.html" %} {% include "seotags.html" %}
{% block head %}{% endblock %} {% block head %}{% endblock %}
@ -30,6 +30,11 @@
{% block body %}{% endblock %} {% block body %}{% endblock %}
</div> </div>
<div class="footer"> <div class="footer">
<table>
<tbody>
<tr>
<td>
<small>Made with Rust and &lt;3</small> <small>Made with Rust and &lt;3</small>
<ul style='margin:10px 0'> <ul style='margin:10px 0'>
@ -49,10 +54,16 @@
</a> </a>
</li> </li>
</ul> </ul>
</td>
<td style="text-align:right;vertical-align:bottom">
<a href="https://blek.codes"> <a href="https://blek.codes">
{% include "blek.svg" %} {% include "blek.svg" %}
</a> </a>
</td>
</tr>
</tbody>
</table>
</div> </div>
<script src="/js-only.js"></script> <script src="/js-only.js"></script>