27 lines
645 B
CSS
27 lines
645 B
CSS
.parcours-step-card {
|
|
@apply !p-6 rounded-2xl flex gap-8 items-center shadowed my-6;
|
|
text-decoration: none !important;
|
|
transition: transform 0.3s ease;
|
|
|
|
&:first-of-type {
|
|
@apply mt-0;
|
|
}
|
|
&:hover {
|
|
@apply translate-x-3;
|
|
}
|
|
&__title {
|
|
@apply py-0 !my-0 text-black font-bold !text-lg no-underline;
|
|
line-height: 1.2 !important;
|
|
}
|
|
&__icon {
|
|
@apply h-16 w-16;
|
|
}
|
|
|
|
&:after {
|
|
@apply block h-4 w-4 shrink-0 bg-contain bg-no-repeat bg-center ml-auto;
|
|
@apply filter-secondary;
|
|
content: '';
|
|
background-image: url('../resources/img/graphic-assets/chevron_right.svg');
|
|
}
|
|
}
|