61 lines
997 B
CSS
61 lines
997 B
CSS
.section_titling {
|
|
@apply text-center pb-8;
|
|
|
|
&__title {
|
|
@apply text-secondary
|
|
font-bold
|
|
text-xl
|
|
uppercase
|
|
pb-2
|
|
!mb-0
|
|
tracking-widest;
|
|
}
|
|
|
|
&__subtitle {
|
|
@apply text-black
|
|
font-bold
|
|
max-w-3xl
|
|
mx-auto
|
|
text-4xl;
|
|
}
|
|
|
|
&__description {
|
|
@apply text-lg pt-4 max-w-3xl mx-auto;
|
|
}
|
|
|
|
&--left {
|
|
@apply text-left;
|
|
.section_titling__subtitle {
|
|
@apply ml-0;
|
|
}
|
|
}
|
|
&--centered {
|
|
@apply text-center;
|
|
}
|
|
&--right {
|
|
@apply text-right;
|
|
.section_titling__subtitle {
|
|
@apply !mr-0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.content-intertitle {
|
|
@apply text-secondary text-lg font-semibold pb-1;
|
|
}
|
|
|
|
.homegrade-title {
|
|
@apply font-bold;
|
|
}
|
|
|
|
.homegrade-title--secondary-small {
|
|
@apply text-secondary uppercase !mb-2;
|
|
}
|
|
.homegrade-title--black-large {
|
|
@apply text-neutral-900 text-4xl;
|
|
}
|
|
|
|
.homegrade-title--secondary-small + .homegrade-title--black-large {
|
|
@apply !mt-0;
|
|
}
|