From 0c4ab26c45b662c86acbf0f0fc5e03142eb3f149 Mon Sep 17 00:00:00 2001 From: Pavetr Date: Tue, 24 Feb 2026 12:43:20 +0300 Subject: [PATCH] Styled footer bg and links --- style.css | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/style.css b/style.css index 4ede0c0..7bc79e5 100644 --- a/style.css +++ b/style.css @@ -9,10 +9,13 @@ * { font-family: "Erbaum Book", "Courier New", Courier, monospace; - background-color: black; color: white; } +body { + background-color: black; +} + .header { justify-content: center; text-align: center; @@ -23,12 +26,6 @@ ol li { #table { line-height: 200%; } -footer { - padding-top: 3px; - padding-bottom: 3px; - padding-left: 30px; - color: gray; -} a:hover { color: #71ff55; } @@ -46,3 +43,19 @@ td { border: 1px white solid; padding: 0.5rem; } +footer { + padding: 5px 10px; + background: #9e9e9e; + background: linear-gradient( + 0deg, + rgba(100, 100, 100, 1) 0%, + rgba(100, 100, 100, 0) 100% + ); + position: fixed; + bottom: 0px; + width: 100svw; + ul { + list-style: none; + padding-left: 0; + } +}