Update the sections glow and placement
This commit is contained in:
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user