16 lines
444 B
CSS
16 lines
444 B
CSS
.heading-box {
|
|
@apply bg-primary text-white text-center py-12 max-w-screen-xl mx-auto
|
|
mt-8 rounded-2xl relative pt-20;
|
|
&__title {
|
|
@apply uppercase font-medium text-xl tracking-widest;
|
|
}
|
|
&__description {
|
|
@apply font-bold text-4xl max-w-screen-md mx-auto pt-4 max-w-md mx-auto;
|
|
line-height: 1.2;
|
|
}
|
|
&__page-icon {
|
|
@apply mx-auto w-28 absolute top-0 left-1/2;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
}
|