2023-06-03 13:19:46 +02:00
|
|
|
.timeline {
|
2023-06-04 18:23:39 +02:00
|
|
|
@apply w-full px-5;
|
2023-06-03 13:19:46 +02:00
|
|
|
|
|
|
|
& > ul {
|
2023-06-03 13:26:57 +02:00
|
|
|
@apply list-none py-5 px-0 relative w-full max-w-5xl mx-auto;
|
2023-06-03 13:19:46 +02:00
|
|
|
|
|
|
|
// Draw center line
|
|
|
|
&:before {
|
2023-06-04 18:23:39 +02:00
|
|
|
@apply top-0 bottom-0 left-0 md:left-1/2 absolute content-[""] w-2;
|
2023-06-04 18:44:29 +02:00
|
|
|
@apply bg-primary/10 dark:bg-dark_primary/10;
|
|
|
|
@apply shadow-md shadow-primary/10 dark:shadow-dark_primary/10;
|
2023-06-03 13:19:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|