From 545193a77992be42fc7ba003e24d393b0310ee98 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 2 Sep 2024 21:57:55 +0100 Subject: [PATCH] Add footer component --- src/footer/index.html | 21 +++++++++++++++++++++ src/footer/index.scss | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 src/footer/index.html create mode 100644 src/footer/index.scss diff --git a/src/footer/index.html b/src/footer/index.html new file mode 100644 index 0000000..e515e04 --- /dev/null +++ b/src/footer/index.html @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/src/footer/index.scss b/src/footer/index.scss new file mode 100644 index 0000000..1d16b8f --- /dev/null +++ b/src/footer/index.scss @@ -0,0 +1,40 @@ +@import "normalize.css"; + +html, +body { + margin: 0; + padding: 0; + font-size: 18px; + font-family: sans-serif; +} + +footer { + background-color: black; + width: 100%; + color: white; + padding: 1rem; + text-align: center; + + ul { + list-style: none; + padding-left: 0; + + li { + display: inline; + + & + li { + margin-left: 1rem; + } + } + } + + a { + color: inherit; + } + + .commit { + margin-bottom: 0; + font-family: monospace; + font-size: 75%; + } +}