new pages, style, dark/light mode toggle, etc...

This commit is contained in:
J-onasJones 2023-09-16 23:30:08 +02:00
parent 09c002f1ae
commit 57ab995f83
29 changed files with 342 additions and 111 deletions

View file

@ -1,7 +1,9 @@
<!-- Footer.svelte -->
<footer>
<a href="/">Home</a>
<div class="footer">
<p>Website by Jonas_Jones 2021 - 2023</p>
</div>
<nav>
<ul>
<li>
@ -17,10 +19,14 @@
<style>
footer {
padding: 1rem;
background: lightskyblue;
margin: 2rem;
margin-bottom: 0;
margin-top: 0;
background: #16181c;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-radius: 0.5rem;
}
ul {
@ -34,4 +40,11 @@
text-decoration: none;
color: inherit;
}
</style>
.footer {
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
}
</style>