From 3b8b1bde260bbe0d093166229ba86472f8a3bec9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique?= Date: Mon, 16 Mar 2026 20:26:41 -0300 Subject: [PATCH] adding glitching to profile pic --- css/sections/profile.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/css/sections/profile.css b/css/sections/profile.css index 5bcb95c..c045440 100644 --- a/css/sections/profile.css +++ b/css/sections/profile.css @@ -77,6 +77,16 @@ border-radius: var(--border-radius-large); } +.avatar:hover img { + animation: avatar-glitch 1s infinite linear; +} + +@keyframes avatar-glitch { + 0%, 100% { + transform: translate(0); + } +} + @media (max-width: 1024px) { .profile-info { align-items: center; @@ -144,4 +154,4 @@ .profile-info-item { font-size: 0.85rem; } -} \ No newline at end of file +}