First Version

This commit is contained in:
2026-04-17 00:26:03 +01:00
parent aecd1a5574
commit c826ed6502
37 changed files with 4862 additions and 19 deletions

53
css/sections.css Normal file
View File

@@ -0,0 +1,53 @@
/*
* Generic Section Styles
*/
.section {
padding: 6rem 0;
position: relative;
}
.alt-bg {
background: var(--bg-alt);
}
.alt-bg::before,
.section::before {
content: '';
position: absolute;
top: 0;
left: 5%;
right: 5%;
height: 1px;
background: linear-gradient(90deg, transparent, var(--divider), transparent);
}
.section-label {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent);
display: block;
margin-bottom: 0.75rem;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: -1px;
margin-bottom: 3rem;
color: var(--text);
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 36px;
height: 3px;
background: var(--accent);
border-radius: 2px;
margin-top: 0.85rem;
box-shadow: 0 0 12px var(--accent-glow);
}