I'm encountering some challenges with a specific section. My goal is for it to resemble this.
However, I am currently achieving something different, like this.
.timeline {
text-align: center;
}
#about-us {
ul {
&:before {
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 2px;
margin-left: -1.5px;
content: '';
background-color: #f1f1f1;
z-index: -1;
}
}
img {
width: 150px;
height: 150px;
border-radius: 50%;
}
}
.timeline-img {
border: 7px solid #f1f1f1;
border-radius: 50%;
text-align: center;
display: inline-block;
}
.timeline-1,
.timeline-3 {
.timeline-info {
float: left;
width: 45%;
text-align: right;
}
}
.timeline-2,
.timeline-4 {
.timeline-info {
float: right;
width: 45%;
text-align: left;
}
}
Additionally, the grey line at the end exceeds slightly, and I'm struggling to match it in length to the final image.