add all modif in the portfolio git

This commit is contained in:
M1n-0
2026-06-08 14:40:14 +02:00
parent 70fb6b82bd
commit 439a00ea76
13 changed files with 904 additions and 91 deletions

View File

@@ -0,0 +1,41 @@
.about-section { padding: 5rem 0 6rem; }
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: start;
}
.about-text p {
color: var(--text-muted);
margin-bottom: 1.2rem;
line-height: 1.9;
font-size: 0.96rem;
}
.about-text strong { color: var(--text); }
.stack-group { margin-bottom: 2.25rem; }
.stack-group h3 {
font-size: 0.72rem;
font-family: var(--font-mono);
color: var(--accent);
text-transform: uppercase;
letter-spacing: 0.12em;
margin-bottom: 0.8rem;
}
.stack-tags {
display: flex;
flex-wrap: wrap;
gap: 0.45rem;
}
@media (max-width: 768px) {
.about-grid {
grid-template-columns: 1fr;
gap: 3rem;
}
}