Update button styles and stats container appearance

Apply a semi-translucent, blurred effect to the stats container and update various button styles, including border thickness and hover states, to use a baby blue hue.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: aaee2b8c-1270-40e0-b7cd-51d1b232198c
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/5e584ab0-c340-4432-97ef-1972582b60e9/u3sQfaY
This commit is contained in:
abhiramtx
2025-11-08 23:12:05 +00:00
parent eeda944957
commit 645e0cc0be

View File

@@ -472,14 +472,16 @@ hr {
.stats-card {
text-align: center;
padding: 32px;
background: rgba(26, 26, 26, 0.4);
background: rgba(26, 26, 26, 0.3);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stats-card:hover {
background: rgba(26, 26, 26, 0.6);
background: rgba(26, 26, 26, 0.5);
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(255, 255, 255, 0.05);
}
@@ -509,8 +511,8 @@ hr {
font-weight: 500;
border-radius: 12px;
padding: 16px 32px;
background: rgba(26, 26, 26, 0.4);
border: 1px solid rgba(255, 255, 255, 0.08);
background: transparent;
border: 1.5px solid #3b82f6;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
margin: 32px auto;
@@ -518,8 +520,8 @@ hr {
}
.stats-button:hover {
background: transparent;
border-color: #3b82f6;
background: #3b82f6;
color: var(--white);
transform: translateY(-2px);
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
@@ -595,16 +597,15 @@ hr {
border-radius: 12px;
color: var(--white);
padding: 16px 32px;
background: rgba(26, 26, 26, 0.4);
border: 1px solid rgba(255, 255, 255, 0.08);
background: transparent;
border: 1.5px solid #3b82f6;
z-index: 2;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bottom-center-button:hover {
background: transparent;
border-color: #3b82f6;
background: #3b82f6;
color: var(--white);
transform: translateX(-50%) translateY(-2px);
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
@@ -742,8 +743,8 @@ hr {
border-radius: 12px;
color: var(--white);
padding: 16px 32px;
background: rgba(26, 26, 26, 0.4);
border: 1px solid rgba(255, 255, 255, 0.08);
background: transparent;
border: 1.5px solid #3b82f6;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
@@ -751,8 +752,8 @@ hr {
}
.team-cta-button:hover {
background: transparent;
border-color: #3b82f6;
background: #3b82f6;
color: var(--white);
transform: translateY(-2px);
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
@@ -812,8 +813,8 @@ hr {
font-family: var(--font-body);
font-weight: 500;
border-radius: 12px;
background: rgba(26, 26, 26, 0.4);
border: 1px solid rgba(255, 255, 255, 0.08);
background: transparent;
border: 1.5px solid #3b82f6;
color: var(--white);
display: block;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
@@ -821,8 +822,8 @@ hr {
}
#sponsors-more-button:hover {
background: transparent;
border-color: #3b82f6;
background: #3b82f6;
color: var(--white);
transform: translateY(-2px);
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}