From dd6bed618f69aca060ee5b86e20f839afd0d243e Mon Sep 17 00:00:00 2001 From: nishupr Date: Fri, 29 May 2026 18:19:09 +0530 Subject: [PATCH] chore: remove unused CSS variables and dead code from globals.css --- src/app/globals.css | 72 --------------------------------------------- 1 file changed, 72 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index e933c3d..64a2c12 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -47,8 +47,6 @@ /* Gradients */ --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple)); - --gradient-secondary: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); - --gradient-glow: radial-gradient(circle at center, rgba(0, 212, 255, 0.15), transparent 70%); /* Glassmorphism Premium */ /* Glassmorphism Premium (Light) */ @@ -59,14 +57,6 @@ --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1); --icon-glow: rgba(0, 0, 0, 0.1); - /* Spacing */ - --spacing-xs: 4px; - --spacing-sm: 8px; - --spacing-md: 16px; - --spacing-lg: 24px; - --spacing-xl: 32px; - --spacing-xxl: 48px; - /* Animation */ --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1); --transition-fast: 0.2s var(--ease-out-expo); @@ -163,23 +153,7 @@ a { text-decoration: none; } -/* Premium Utilities */ -.glass { - background: var(--glass-bg); - backdrop-filter: blur(var(--glass-blur)); - -webkit-backdrop-filter: blur(var(--glass-blur)); - border: 1px solid var(--glass-border); - box-shadow: var(--glass-shadow); -} -.text-gradient { - background: var(--gradient-primary); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; - background-size: 200% auto; - animation: gradient-flow 5s linear infinite; -} .container { max-width: 1400px; @@ -187,48 +161,6 @@ a { padding: 0 24px; } -/* Animations */ -@keyframes gradient-flow { - 0% { - background-position: 0% 50%; - } - - 50% { - background-position: 100% 50%; - } - - 100% { - background-position: 0% 50%; - } -} - -@keyframes float { - 0% { - transform: translateY(0px); - } - - 50% { - transform: translateY(-10px); - } - - 100% { - transform: translateY(0px); - } -} - -@keyframes pulse-glow { - 0% { - box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); - } - - 70% { - box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); - } - - 100% { - box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); - } -} /* Scrollbar */ ::-webkit-scrollbar { @@ -345,7 +277,3 @@ a { .markdown-body [width] { width: auto; } -/* GSSoC'26 Issue #31: Fix abrupt page snap when navigating mobile anchor links */ -html { - scroll-behavior: smooth !important; -} \ No newline at end of file