move all components that are exclusive to one page

This commit is contained in:
2026-04-23 15:37:39 +02:00
parent 23233d4be6
commit d34eb5714f
17 changed files with 19 additions and 19 deletions
@@ -0,0 +1,37 @@
#experiences-section {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
scroll-margin-top: 80px;
}
.experiences-container {
width: 100%;
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);
}
@media (max-width: 768px) {
.experiences-container {
width: 90%;
align-items: flex-start;
margin-right: 20px;
}
.experiences-container::before {
left: 20px;
}
}