From 6f02180dd48b51ad2ef598de6ea547f7d8670880 Mon Sep 17 00:00:00 2001
From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com>
Date: Mon, 30 Jun 2025 00:23:10 +0200
Subject: [PATCH] Add footer to index.php and style.css
---
website/index.php | 7 +++++++
website/style.css | 32 ++++++++++++++++++++++++++++++++
2 files changed, 39 insertions(+)
diff --git a/website/index.php b/website/index.php
index 4d310028..6544a50e 100644
--- a/website/index.php
+++ b/website/index.php
@@ -321,6 +321,13 @@ if (isset($_SESSION['steamid'])) {
+
+
+
diff --git a/website/style.css b/website/style.css
index 0c31eed6..a784a63e 100644
--- a/website/style.css
+++ b/website/style.css
@@ -370,6 +370,38 @@ body {
line-height: 1.3;
}
+/* Footer */
+.app-footer {
+ background: var(--bg-secondary);
+ border-top: 1px solid var(--border-color);
+ padding: 1rem 0;
+ text-align: center;
+ margin-top: 2rem;
+}
+
+.footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+}
+
+.footer-content p {
+ margin: 0;
+ color: var(--text-muted);
+ font-size: 0.9rem;
+}
+
+.footer-content a {
+ color: var(--accent-blue);
+ text-decoration: none;
+ transition: var(--transition);
+}
+
+.footer-content a:hover {
+ color: var(--accent-blue-hover);
+ text-decoration: underline;
+}
+
/* Overlays and Modals */
.overlay,
.modal {