Update card and button styles for a modern aesthetic
Refactors CSS in `static/css/styles.css` to update the visual appearance of `.stats-card` elements and various buttons, aligning them with a card-like design and modifying hover states for buttons to have a blue outline without fill. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 0f7ec833-2506-47a7-a9c1-3258833d5cd0 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/5e584ab0-c340-4432-97ef-1972582b60e9/X0ztToo
This commit is contained in:
BIN
attached_assets/image_1762643245259.png
Normal file
BIN
attached_assets/image_1762643245259.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 47 KiB |
@@ -472,15 +472,16 @@ hr {
|
|||||||
.stats-card {
|
.stats-card {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 32px;
|
padding: 32px;
|
||||||
background: var(--gray-800);
|
background: rgba(26, 26, 26, 0.4);
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
border: 1px solid var(--gray-700);
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
transition: all 0.2s ease;
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.stats-card:hover {
|
.stats-card:hover {
|
||||||
background: var(--gray-700);
|
background: rgba(26, 26, 26, 0.6);
|
||||||
transform: translateY(-4px);
|
transform: translateY(-4px);
|
||||||
|
box-shadow: 0 12px 24px rgba(255, 255, 255, 0.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
.stats-card-header {
|
.stats-card-header {
|
||||||
@@ -508,8 +509,8 @@ hr {
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
padding: 16px 32px;
|
padding: 16px 32px;
|
||||||
background: rgba(59, 130, 246, 0.1);
|
background: rgba(26, 26, 26, 0.4);
|
||||||
border: 1px solid rgba(59, 130, 246, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
margin: 32px auto;
|
margin: 32px auto;
|
||||||
@@ -517,9 +518,10 @@ hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.stats-button:hover {
|
.stats-button:hover {
|
||||||
background: rgba(59, 130, 246, 0.2);
|
background: transparent;
|
||||||
|
border-color: #3b82f6;
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
|
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.about-section-imgp {
|
.about-section-imgp {
|
||||||
@@ -593,18 +595,19 @@ hr {
|
|||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
padding: 16px 32px;
|
padding: 16px 32px;
|
||||||
background: rgba(59, 130, 246, 0.1);
|
background: rgba(26, 26, 26, 0.4);
|
||||||
border: 1px solid rgba(59, 130, 246, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-center-button:hover {
|
.bottom-center-button:hover {
|
||||||
background: rgba(59, 130, 246, 0.2);
|
background: transparent;
|
||||||
|
border-color: #3b82f6;
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
transform: translateX(-50%) translateY(-2px);
|
transform: translateX(-50%) translateY(-2px);
|
||||||
box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
|
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.values-grid {
|
.values-grid {
|
||||||
@@ -739,8 +742,8 @@ hr {
|
|||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
padding: 16px 32px;
|
padding: 16px 32px;
|
||||||
background: rgba(59, 130, 246, 0.1);
|
background: rgba(26, 26, 26, 0.4);
|
||||||
border: 1px solid rgba(59, 130, 246, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -748,9 +751,10 @@ hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.team-cta-button:hover {
|
.team-cta-button:hover {
|
||||||
background: rgba(59, 130, 246, 0.2);
|
background: transparent;
|
||||||
|
border-color: #3b82f6;
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
|
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
@@ -808,8 +812,8 @@ hr {
|
|||||||
font-family: var(--font-body);
|
font-family: var(--font-body);
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
background: rgba(59, 130, 246, 0.1);
|
background: rgba(26, 26, 26, 0.4);
|
||||||
border: 1px solid rgba(59, 130, 246, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||||
color: var(--white);
|
color: var(--white);
|
||||||
display: block;
|
display: block;
|
||||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
@@ -817,9 +821,10 @@ hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#sponsors-more-button:hover {
|
#sponsors-more-button:hover {
|
||||||
background: rgba(59, 130, 246, 0.2);
|
background: transparent;
|
||||||
|
border-color: #3b82f6;
|
||||||
transform: translateY(-2px);
|
transform: translateY(-2px);
|
||||||
box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
|
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-container,
|
.card-container,
|
||||||
|
|||||||
Reference in New Issue
Block a user