From 1cd28becaba85ec1dbd5ad87cd8c2e402010a2a4 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 27 Sep 2024 21:42:20 +0300 Subject: [PATCH] add opengraph tags & social cards No forgejo icon, shame on you FA! --- index.html | 30 ++++++++++++++++++++++++++++++ styles.css | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) diff --git a/index.html b/index.html index 38f272c..6a51e99 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,13 @@ + + + + + + + definitely update soon with more details. Totally, I promise. Trust me.

+
+ + + + + + + + + +
diff --git a/styles.css b/styles.css index 99b4fae..1fbe84a 100644 --- a/styles.css +++ b/styles.css @@ -83,6 +83,39 @@ body { letter-spacing: 0.6px; } +.social-cards { + display: flex; + justify-content: center; + margin-top: 20px; /* Add space after the About Me section */ +} + +.social-cards a { + display: inline-block; + margin: 0 10px; + text-decoration: none; +} + +.social-cards i { + font-size: 32px; + color: #f8fafc; + transition: color 0.3s ease; +} + +.social-cards a:hover i { + color: #a1a1aa; +} + +.social-cards a { + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); + border-radius: 5px; +} + +@media (max-width: 768px) { + .social-cards a { + margin: 5px; + } +} + footer { padding: 10px; text-align: center;