50 lines
834 B
CSS
50 lines
834 B
CSS
article > *:not(.entry-content, .chapter-header-block),
|
|
.entry-content > * {
|
|
@apply mx-auto max-w-content;
|
|
}
|
|
|
|
.entry-content {
|
|
h1 {
|
|
@apply text-2xl;
|
|
}
|
|
|
|
h2 {
|
|
@apply text-xl;
|
|
}
|
|
|
|
h3 {
|
|
@apply font-bold text-2xl;
|
|
}
|
|
|
|
p,
|
|
ul,
|
|
ol {
|
|
a {
|
|
@apply text-primary font-bold underline underline-offset-4;
|
|
/* &:after {
|
|
@apply inline-block bg-red-500 h-3 w-3 ml-2;
|
|
content: '';
|
|
background-image: url('/wp-content/themes/homegrade/dist/images/arrow.svg');
|
|
} */
|
|
|
|
&:hover {
|
|
@apply no-underline;
|
|
}
|
|
}
|
|
|
|
@apply mb-8;
|
|
}
|
|
|
|
ul:not(.block-editor-block-variation-picker__variations) {
|
|
li {
|
|
@apply list-disc list-inside;
|
|
}
|
|
}
|
|
|
|
ol {
|
|
li {
|
|
@apply list-decimal list-inside;
|
|
}
|
|
}
|
|
}
|