change the css a bit

This commit is contained in:
Dave Smith-Hayes 2024-11-06 22:21:41 -05:00
parent 737535ffd5
commit 56f9683d0a
2 changed files with 18 additions and 4 deletions

View File

@ -3,9 +3,21 @@ body {
}
.container {
box-sizing: border-box;
max-width: 1200px;
margin: 0 auto;
background-color: #fff;
padding: 1em;
border: 1px solid #ccc;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
main {
background-color: #fff;
border: 1px solid #ccc;
padding: 1em;
}
footer {
text-align: right;
padding: 0.25em 1em;
}

View File

@ -32,7 +32,9 @@
</main>
<footer>
{% block footer %}{% endblock %}
{% block footer %}
&copy; 2024, Slovocast
{% endblock %}
</footer>
</div>
</body>