From c549d5c65e5c963b5c21d18b38a62ab69c3e3d65 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Tue, 20 May 2025 19:42:17 +0200 Subject: [PATCH] feat: add footer with links to project repository and author website --- src/index.html | 8 ++++++++ src/main.css | 13 +++++++++++++ 2 files changed, 21 insertions(+) diff --git a/src/index.html b/src/index.html index f089ec5..d1218db 100644 --- a/src/index.html +++ b/src/index.html @@ -70,6 +70,14 @@ + +
Level 0/0
diff --git a/src/main.css b/src/main.css index e147cca..02c6617 100644 --- a/src/main.css +++ b/src/main.css @@ -96,6 +96,19 @@ code { font-family: var(--font-code); } +footer { + margin: 2rem auto 0; + display: block; + color: var(--light-text); + text-align: center; +} + +footer a { + color: var(--primary-color); + text-decoration: none; + transition: color 0.2s ease; +} + /* ================= LAYOUT ================= */ .app-container { display: flex;