26 lines
490 B
CSS
26 lines
490 B
CSS
#experiences-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
scroll-margin-top: 80px;
|
|
}
|
|
|
|
.experiences-container {
|
|
width: 50%;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.experiences-container::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 2px;
|
|
height: 100%;
|
|
background-color: rgba(176, 176, 176, 0.2);
|
|
}
|