From 58c8321a18d47629718edbdf8e72f1b5a5673da6 Mon Sep 17 00:00:00 2001 From: jabuxas Date: Tue, 24 Sep 2024 13:23:46 -0300 Subject: [PATCH] feat: add footer to homepage --- static/index.html | 4 ++++ static/style.css | 13 +++++++++++++ 2 files changed, 17 insertions(+) diff --git a/static/index.html b/static/index.html index 9bb416e..e7ed118 100644 --- a/static/index.html +++ b/static/index.html @@ -14,6 +14,10 @@ + diff --git a/static/style.css b/static/style.css index ee4e83c..57d6e0f 100644 --- a/static/style.css +++ b/static/style.css @@ -29,3 +29,16 @@ button { button:hover { background-color: #45a29e; } + +footer { + position: absolute; + bottom: 1rem; + font-size: 0.8rem; + color: #777; +} + +footer a { + color: #66fcf1; + text-decoration: none; + font-weight: bold; +}