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 { .container {
box-sizing: border-box;
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
background-color: #fff; display: flex;
padding: 1em; flex-wrap: wrap;
border: 1px solid #ccc; 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> </main>
<footer> <footer>
{% block footer %}{% endblock %} {% block footer %}
&copy; 2024, Slovocast
{% endblock %}
</footer> </footer>
</div> </div>
</body> </body>