From a018c53cf20c68d0cee7fe1e8a007a39bb06a8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20M=C3=A4lman?= Date: Sat, 15 Nov 2025 19:54:08 +0100 Subject: [PATCH] Add LinkedIn badge to footer and style social links --- index.html | 17 ++++++++++++----- src/style.css | 18 ++++++++++++++---- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index f9e0b39..488523e 100644 --- a/index.html +++ b/index.html @@ -63,11 +63,18 @@

diff --git a/src/style.css b/src/style.css index 15bdf74..db5f34b 100644 --- a/src/style.css +++ b/src/style.css @@ -372,7 +372,14 @@ footer p { margin: 0; } -.github-link { +.social-links { + display: flex; + align-items: center; + gap: 12px; +} + +.github-link, +.linkedin-link { color: #9AA2B1; transition: all 0.3s ease; display: flex; @@ -382,19 +389,22 @@ footer p { border-radius: 6px; } -.github-link:hover { +.github-link:hover, +.linkedin-link:hover { color: #3BA3E5; transform: translateY(-2px); background-color: rgba(59, 163, 229, 0.1); } -.github-icon { +.github-icon, +.linkedin-icon { width: 20px; height: 20px; transition: all 0.3s ease; } -.github-link:hover .github-icon { +.github-link:hover .github-icon, +.linkedin-link:hover .linkedin-icon { transform: scale(1.1); }