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;
}
}

View File

@@ -0,0 +1,87 @@
.contact-section { padding: 5rem 0 6rem; }
.contact-grid {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 5rem;
align-items: start;
}
.contact-intro {
color: var(--text-muted);
font-size: 0.96rem;
line-height: 1.85;
margin-bottom: 2.5rem;
}
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
display: flex;
flex-direction: column;
gap: 0.15rem;
padding: 1rem 1.25rem;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 8px;
text-decoration: none;
transition: border-color 0.2s;
}
.contact-link:hover { border-color: var(--accent); }
.contact-link-label {
font-family: var(--font-mono);
font-size: 0.7rem;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 0.1em;
}
.contact-link-value {
font-size: 0.9rem;
color: var(--text);
}
/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
font-size: 0.8rem;
font-family: var(--font-mono);
color: var(--text-muted);
letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 6px;
padding: 0.75rem 1rem;
color: var(--text);
font-family: var(--font-main);
font-size: 0.9rem;
outline: none;
transition: border-color 0.2s;
resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--text-muted);
}
@media (max-width: 768px) {
.contact-grid {
grid-template-columns: 1fr;
gap: 3rem;
}
}

View File

@@ -0,0 +1,82 @@
.experiences-section { padding: 5rem 0 6rem; }
.timeline {
position: relative;
padding-left: 2rem;
}
.timeline::before {
content: '';
position: absolute;
left: 0;
top: 6px;
bottom: 6px;
width: 1px;
background: var(--border);
}
.timeline-item {
position: relative;
padding-left: 2.5rem;
padding-bottom: 3rem;
display: grid;
grid-template-columns: 100px 1fr;
gap: 1.5rem;
align-items: start;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
position: absolute;
left: -2rem;
top: 6px;
width: 9px;
height: 9px;
border-radius: 50%;
background: var(--accent);
border: 2px solid var(--bg);
box-shadow: 0 0 0 3px var(--accent-dim);
transform: translateX(-50%);
}
.timeline-date {
font-family: var(--font-mono);
font-size: 0.75rem;
color: var(--text-muted);
padding-top: 0.15rem;
white-space: nowrap;
}
.timeline-content h3 {
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 0.2rem;
}
.tl-org {
font-size: 0.82rem;
color: var(--accent);
font-family: var(--font-mono);
margin-bottom: 0.75rem;
}
.tl-desc {
color: var(--text-muted);
font-size: 0.91rem;
line-height: 1.75;
margin-bottom: 1rem;
}
.tl-tags {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
}
@media (max-width: 600px) {
.timeline-item {
grid-template-columns: 1fr;
gap: 0.5rem;
}
}

168
web/static/global.css Normal file
View File

@@ -0,0 +1,168 @@
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--bg: #07070e;
--bg-2: #0e0c1a;
--bg-card: #120f1e;
--accent: #a855f7;
--accent-dim: rgba(168, 85, 247, 0.12);
--text: #e2e2f0;
--text-muted: #6a6a8a;
--border: #1e1a30;
--font-main: 'Space Grotesk', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
background-color: var(--bg);
color: var(--text);
font-family: var(--font-main);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* ── Navbar ─────────────────────────────────────── */
.navbar {
position: fixed;
top: 0;
width: 100%;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.25rem 6%;
background: rgba(8, 8, 15, 0.85);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border);
}
.nav-brand {
font-family: var(--font-mono);
font-size: 1rem;
font-weight: 500;
color: var(--accent);
text-decoration: none;
letter-spacing: 0.06em;
}
.nav-links {
list-style: none;
display: flex;
gap: 2.5rem;
}
.nav-links a {
color: var(--text-muted);
text-decoration: none;
font-size: 0.88rem;
font-weight: 500;
letter-spacing: 0.02em;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }
/* ── Main ───────────────────────────────────────── */
main {
flex: 1;
padding-top: 4.5rem;
}
/* ── Footer ─────────────────────────────────────── */
.footer {
text-align: center;
padding: 2rem;
color: var(--text-muted);
font-size: 0.78rem;
font-family: var(--font-mono);
border-top: 1px solid var(--border);
}
.footer span { color: var(--accent); }
/* ── Utilities ───────────────────────────────────── */
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 6%;
}
.section-title {
font-size: clamp(1.8rem, 4vw, 2.4rem);
font-weight: 700;
margin-bottom: 0.4rem;
letter-spacing: -0.02em;
}
.section-title span { color: var(--accent); }
.section-subtitle {
color: var(--text-muted);
font-size: 0.93rem;
margin-bottom: 3.5rem;
}
.tag {
display: inline-block;
padding: 0.22rem 0.65rem;
background: var(--accent-dim);
color: var(--accent);
border-radius: 4px;
font-size: 0.72rem;
font-family: var(--font-mono);
font-weight: 500;
letter-spacing: 0.03em;
}
/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
display: inline-block;
padding: 0.75rem 1.75rem;
background: var(--accent);
color: #ffffff;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 0.88rem;
transition: opacity 0.2s, transform 0.2s;
border: none;
cursor: pointer;
font-family: var(--font-main);
}
.btn-primary:hover {
opacity: 0.82;
transform: translateY(-2px);
}
.btn-secondary {
display: inline-block;
padding: 0.75rem 1.75rem;
border: 1px solid var(--border);
color: var(--text);
text-decoration: none;
border-radius: 6px;
font-weight: 500;
font-size: 0.88rem;
transition: border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
/* ── Mobile nav ──────────────────────────────────── */
@media (max-width: 600px) {
.navbar { flex-direction: column; gap: 1rem; padding: 1rem 6%; }
.nav-links { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
}

View File

@@ -1,3 +1,51 @@
.test{
}
.hero {
min-height: calc(100vh - 4.5rem);
display: flex;
align-items: center;
}
.hero-inner { max-width: 680px; }
.hero-pre {
font-family: var(--font-mono);
color: var(--accent);
font-size: 0.85rem;
letter-spacing: 0.12em;
margin-bottom: 0.5rem;
}
.hero-name {
font-size: clamp(3rem, 9vw, 5.5rem);
font-weight: 700;
line-height: 1.03;
letter-spacing: -0.03em;
margin-bottom: 0.4rem;
}
.hero-title {
font-size: clamp(1.1rem, 2.5vw, 1.6rem);
font-weight: 400;
color: var(--text-muted);
margin-bottom: 1.75rem;
}
.hero-desc {
color: var(--text-muted);
font-size: 1rem;
line-height: 1.85;
max-width: 540px;
margin-bottom: 2.5rem;
}
.hero-cta {
display: flex;
gap: 1rem;
margin-bottom: 3rem;
flex-wrap: wrap;
}
.hero-stack {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}

View File

@@ -0,0 +1,63 @@
.projects-section { padding: 5rem 0 6rem; }
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
gap: 1.25rem;
}
.project-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 10px;
padding: 2rem;
position: relative;
overflow: hidden;
transition: border-color 0.25s, transform 0.25s;
}
.project-card::after {
content: '';
position: absolute;
inset: 0;
border-radius: 10px;
background: radial-gradient(circle at top left, var(--accent-dim), transparent 60%);
opacity: 0;
transition: opacity 0.3s;
pointer-events: none;
}
.project-card:hover {
border-color: rgba(34, 211, 238, 0.35);
transform: translateY(-4px);
}
.project-card:hover::after { opacity: 1; }
.project-num {
font-family: var(--font-mono);
font-size: 0.7rem;
color: var(--accent);
opacity: 0.6;
margin-bottom: 0.75rem;
letter-spacing: 0.05em;
}
.project-card h3 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.75rem;
}
.project-card p {
color: var(--text-muted);
font-size: 0.88rem;
line-height: 1.75;
margin-bottom: 1.25rem;
}
.project-tags {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
}