From 693debefbec27bb5d141ec7cc2bd62a644ba398f Mon Sep 17 00:00:00 2001 From: Florian Sylvain Date: Sun, 9 Jan 2022 22:14:25 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Added=20footer=20with=20GitHub=20li?= =?UTF-8?q?nk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjetProgWeb/index.php | 7 ++++++- ProjetProgWeb/stylesheet.css | 28 ++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/ProjetProgWeb/index.php b/ProjetProgWeb/index.php index 5869a22..a50ce28 100644 --- a/ProjetProgWeb/index.php +++ b/ProjetProgWeb/index.php @@ -61,7 +61,12 @@ - + diff --git a/ProjetProgWeb/stylesheet.css b/ProjetProgWeb/stylesheet.css index 4e62623..e1a6785 100644 --- a/ProjetProgWeb/stylesheet.css +++ b/ProjetProgWeb/stylesheet.css @@ -15,6 +15,7 @@ } body { + position: relative; display: flex; flex-direction: column; margin: 0; @@ -27,6 +28,33 @@ header { height: 75px; } +footer { + display: flex; + justify-content: right; + padding: 25px; + align-items: center; + gap: 10px; + position: relative; + bottom: 0; + width: 100%; + z-index: 10; + height: 75px; + background: #464646; + +} + +footer a { + color: white; + text-decoration: none; + font-size: inherit; + font-family: inherit; + text-align: center; +} + +footer svg { + fill: white; +} + #title a { text-decoration: none; color: inherit;