less position: fixed;!

This commit is contained in:
hyperbel 2023-10-24 14:18:00 +00:00
parent 1411171344
commit 90e8f95be7
2 changed files with 13 additions and 4 deletions

View File

@ -10,7 +10,6 @@ header {
background-color: #333;
height: 5%;
width: 100%;
position: fixed;
}
header ul {
@ -753,3 +752,13 @@ section {
#settings_button + label {
content: url('/static/icons/settings.png');
}
footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #333;
color: rgb(220, 220, 210);
text-align: center;
padding: 10px;
}

View File

@ -231,9 +231,9 @@
</div>
</main>
<footer style="position: fixed; bottom: 0; width: 100%; background-color: #333; color: rgb(220, 220, 210); text-align: center; padding: 10px;">
<div>Partycontroller Version 0.1</div>
<div>&copy; Lostkids</div>
<footer>
<p>Partycontroller Version 0.1</p>
<p>&copy; Lostkids</p>
</footer>
{% endblock %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.1/socket.io.js"></script>