57 lines
1021 B
CSS
57 lines
1021 B
CSS
.homegrade-blocks-highlight {
|
|
@apply p-12 rounding-radius my-8 max-w-screen-xl mx-auto;
|
|
|
|
h3 {
|
|
@apply pb-4;
|
|
}
|
|
p {
|
|
margin-bottom: 10px;
|
|
}
|
|
&__block-title {
|
|
@apply !pb-0;
|
|
}
|
|
.wp-block-button {
|
|
@apply mt-6;
|
|
}
|
|
.wp-block-button + * {
|
|
@apply mt-6;
|
|
}
|
|
&--classic {
|
|
@apply bg-primary text-white;
|
|
.icon,
|
|
.wp-block-button__link {
|
|
@apply bg-secondary;
|
|
}
|
|
}
|
|
&--warning {
|
|
@apply !bg-transparent !relative !text-secondary;
|
|
.icon,
|
|
.wp-element-button,
|
|
ul li:before {
|
|
@apply !bg-secondary;
|
|
}
|
|
.homegrade-blocks-highlight__block-title,
|
|
*::marker {
|
|
@apply !text-secondary;
|
|
}
|
|
p > a {
|
|
@apply !text-primary font-bold;
|
|
}
|
|
|
|
&:after {
|
|
@apply absolute
|
|
block
|
|
rounding-radius
|
|
w-full
|
|
h-full
|
|
!bg-secondary
|
|
top-0
|
|
left-0;
|
|
opacity: 0.05;
|
|
content: '';
|
|
z-index: -1;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|