52 lines
1.1 KiB
CSS
52 lines
1.1 KiB
CSS
.homegrade-page--parcours {
|
|
aside {
|
|
@apply py-4;
|
|
}
|
|
h1 {
|
|
@apply text-4xl font-bold;
|
|
}
|
|
h2 {
|
|
@apply text-3xl font-bold;
|
|
}
|
|
|
|
.parcours-steps {
|
|
@apply flex flex-col gap-y-6;
|
|
}
|
|
.parcours-other-steps-suggestion {
|
|
@apply bg-white !p-6 !pr-16 rounded-3xl shadowed flex items-center gap-4;
|
|
transition: all 0.3s ease;
|
|
&:hover {
|
|
@apply translate-x-4 !bg-white !rounded-3xl;
|
|
}
|
|
|
|
.step-icon {
|
|
@apply w-12 h-12 relative;
|
|
}
|
|
span::after {
|
|
transition: all 0.3s ease;
|
|
content: ' ';
|
|
@apply inline-block absolute w-3 h-3 right-6 top-1/2 -translate-y-1/2 filter-secondary;
|
|
background-image: url('../resources/img/graphic-assets/chevron_right.svg');
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
}
|
|
|
|
.parcours-steps {
|
|
@apply sticky top-0;
|
|
}
|
|
}
|
|
|
|
.current-steps-index {
|
|
@apply !static;
|
|
}
|
|
|
|
.current-steps-index {
|
|
@apply chapter_index;
|
|
|
|
.chapter_index__title {
|
|
@apply my-0;
|
|
}
|
|
}
|