27 lines
647 B
CSS
27 lines
647 B
CSS
.page--single-auteurs {
|
|
@apply max-w-screen-xl mx-auto px-4;
|
|
|
|
h1 {
|
|
@apply !text-8xl uppercase mb-8 col-span-2;
|
|
}
|
|
|
|
&__header {
|
|
@apply grid grid-cols-2 gap-2 gap-x-8 items-center justify-center py-12;
|
|
|
|
grid-template-columns: auto 1fr;
|
|
}
|
|
&__comities-list {
|
|
@apply flex flex-wrap gap-2 items-center col-span-2 text-primary font-normal pt-4;
|
|
}
|
|
&__comity {
|
|
@apply text-lg fjalla uppercase;
|
|
|
|
+ .page--single-auteurs__comity {
|
|
@apply before:content-['|'] before:mx-2 before:text-primary;
|
|
}
|
|
}
|
|
&__comities-list-title {
|
|
@apply text-base font-normal text-neutral-400;
|
|
}
|
|
}
|