Update the sections glow and placement

This commit is contained in:
2026-02-04 18:50:27 +01:00
parent 0b7ff38880
commit fd0843387c

View File

@ -115,6 +115,7 @@ main {
}
.split {
position: relative;
display: flex;
align-items: center;
min-height: 55vh;
@ -217,12 +218,28 @@ main {
flex: 1;
}
#about {
#about::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 100vw;
height: 100%;
background: linear-gradient(180deg, transparent 0%, var(--muted-accent) 50%, transparent 100%);
z-index: -1;
pointer-events: none;
}
#services {
background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
#services::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 100vw;
height: 100%;
background: linear-gradient(180deg, transparent 0%, rgba(170, 190, 220, 0.1) 50%, transparent 100%);
z-index: -1;
pointer-events: none;
}
footer {