Add footer to index.php and style.css

This commit is contained in:
Bram Suurd
2025-06-30 00:23:10 +02:00
parent c1a9642961
commit 6f02180dd4
2 changed files with 39 additions and 0 deletions

View File

@@ -321,6 +321,13 @@ if (isset($_SESSION['steamid'])) {
</div> </div>
</div> </div>
<!-- Footer -->
<footer class="app-footer">
<div class="footer-content">
<p>Created with ❤️ by <strong><a target="_blank" href="https://github.com/BramSuurdje" rel="noopener noreferrer">Bram</a></strong></p>
</div>
</footer>
<!-- Customize Modal --> <!-- Customize Modal -->
<div id="customizeModal" class="modal hidden"> <div id="customizeModal" class="modal hidden">
<div class="modal-content"> <div class="modal-content">

View File

@@ -370,6 +370,38 @@ body {
line-height: 1.3; 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 */ /* Overlays and Modals */
.overlay, .overlay,
.modal { .modal {