From 038054b8206a9c25e84adeb0f0f355abd22d6143 Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Mon, 22 Dec 2025 14:02:07 +0100 Subject: CSS & JS splitting, small fix section badge --- assets/css/footer.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 assets/css/footer.css (limited to 'assets/css/footer.css') diff --git a/assets/css/footer.css b/assets/css/footer.css new file mode 100644 index 0000000..88d705c --- /dev/null +++ b/assets/css/footer.css @@ -0,0 +1,31 @@ +/* FOOTER */ +.site__footer { + display: flex; + align-items: center; + justify-content: space-around; + margin-top: var(--gap-medium); + + @media (max-width: 768px) { + flex-direction: column; + gap: var(--gap-default); + } +} + +.follow-me-list { + display: flex; + align-items: center; + justify-content: center; + gap: var(--gap-medium); + + @media (max-width: 768px) { + flex-wrap: wrap; + } +} + +/* Footer Icons */ +.follow-me-item img { + object-fit: contain; + height: 2rem; + width: 2rem; +} + -- cgit v1.2.3