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,29 +30,40 @@
{% block body %}{% endblock %} {% block body %}{% endblock %}
</div> </div>
<div class="footer"> <div class="footer">
<small>Made with Rust and &lt;3</small>
<ul style='margin:10px 0'> <table>
<li> <tbody>
<a href="https://git.blek.codes/blek/bfile"> <tr>
Source code <td>
</a> <small>Made with Rust and &lt;3</small>
</li>
<li> <ul style='margin:10px 0'>
<a href="/license"> <li>
Released under GPLv3 <a href="https://git.blek.codes/blek/bfile">
</a> Source code
</li> </a>
<li> </li>
<a href="/authors"> <li>
Made by blek! and contributors <a href="/license">
</a> Released under GPLv3
</li> </a>
</ul> </li>
<li>
<a href="/authors">
Made by blek! and contributors
</a>
</li>
</ul>
</td>
<td style="text-align:right;vertical-align:bottom">
<a href="https://blek.codes">
{% include "blek.svg" %}
</a>
</td>
</tr>
</tbody>
</table>
<a href="https://blek.codes">
{% include "blek.svg" %}
</a>
</div> </div>
<script src="/js-only.js"></script> <script src="/js-only.js"></script>