From 359f7bb227ec76d76e4b788abe155e0d9dfd65f2 Mon Sep 17 00:00:00 2001 From: recanman <29310982+recanman@users.noreply.github.com> Date: Thu, 5 Sep 2024 21:49:32 -0700 Subject: [PATCH] feat: implement footer --- assets/css/style.css | 25 ++++++++++++++++++++++++- layouts/partials/foot.html | 14 ++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/assets/css/style.css b/assets/css/style.css index 189b641..7f26be7 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -6,7 +6,7 @@ body { background: black; color: white; } -.container { +.container, footer { margin: auto; padding: 0.5em 1em; min-width: 300px; @@ -100,3 +100,26 @@ figcaption h4 { .content a { text-decoration: underline; } +footer ul { + list-style-type: none; + padding: 0; + margin: 0; +} +footer ul li { + display: inline; + font-size: 1em; + line-height: 1.7em; +} +footer ul li img { + display: inline; + height: 1rem; + vertical-align: middle; + margin-bottom: 0; + border-radius: 0; +} +footer ul li::after { + content: " | "; +} +footer ul :last-child::after { + content: ""; +} \ No newline at end of file diff --git a/layouts/partials/foot.html b/layouts/partials/foot.html index e69de29..61ec645 100644 --- a/layouts/partials/foot.html +++ b/layouts/partials/foot.html @@ -0,0 +1,14 @@ + \ No newline at end of file