feat(ui): add technologies and stack section with responsive grid and alternating backgrounds

This commit is contained in:
2026-02-11 23:01:13 -05:00
parent ae6dd34c07
commit fb205569e3
2 changed files with 164 additions and 3 deletions

View File

@@ -262,6 +262,56 @@ footer {
}
}
/* Tech Stack Cards */
.tech-card {
padding: 2rem 1.5rem;
border-radius: 12px;
background-color: var(--bg-surface);
border: 1px solid var(--border-subtle);
text-align: center;
height: 100%;
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tech-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-soft);
border-color: var(--color-secondary);
}
.tech-icon-wrapper {
width: 64px;
height: 64px;
border-radius: 50%;
background-color: var(--bg-section-alt);
color: var(--color-primary);
display: inline-flex;
align-items: center;
justify-content: center;
margin-bottom: 1.25rem;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tech-card:hover .tech-icon-wrapper {
background-color: var(--color-primary);
color: white;
transform: scale(1.1) rotate(5deg);
}
.tech-name {
font-weight: 700;
font-size: 1.1rem;
margin-bottom: 0.5rem;
color: var(--text-body);
}
.tech-desc {
font-size: 0.9rem;
opacity: 0.8;
margin: 0;
line-height: 1.4;
}
/* Animations */
@keyframes fade-in-up {
from {