Added a footer

This commit is contained in:
2025-10-30 17:52:57 +01:00
parent 270450f248
commit 22360d3904
2 changed files with 24 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ body {
overflow: hidden;
background-color: #0e0016;
color: white;
font-family: "LuxiSans", sans-serif;
font-family: "system-ui", sans-serif;
}
/* === NAVBAR ON THE RIGHT === */
@@ -89,6 +89,22 @@ body {
background-color: #fff5a8;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 1rem 0;
text-align: center;
font-family: IBMWeb, "Liberation Mono", monospace;
color: #fff;
background: transparent;
z-index: 5;
text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
letter-spacing: 0.05em;
}
/* === MAIN CONTENT === */
.content {
display: flex;

View File

@@ -96,6 +96,13 @@
<div class="clouds">
<img src="assets/images/clouds.png" alt="Clouds">
</div>
<div class="footer">
Purplebored &copy; 2023-2025 |
<a href="https://git.purplebored.pl/purplebored/purplebored.pl">Source code</a> |
<a href="/pages/contact.html">Contact Me</a> |
<a href="https://status.purplebored.pl"> Uptime / Status</a> |
</div>
<canvas id="night"></canvas>
<script src="assets/js/script.js" defer></script>