63 lines
868 B
CSS
63 lines
868 B
CSS
article > *:not(.entry-content),
|
|
.entry-content > * {
|
|
@apply mx-auto max-w-content;
|
|
}
|
|
|
|
.entry-content,
|
|
.block-editor-block-list__layout {
|
|
h1 {
|
|
@apply text-2xl;
|
|
}
|
|
|
|
h2 {
|
|
@apply text-lg;
|
|
}
|
|
|
|
h3 {
|
|
@apply text-lg;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
p,
|
|
ul,
|
|
ol {
|
|
a {
|
|
@apply text-carhop-green-700 underline underline-offset-4;
|
|
transition: filter 0.3s ease-out;
|
|
|
|
&:hover {
|
|
filter: brightness(0.4);
|
|
}
|
|
}
|
|
|
|
@apply mb-8;
|
|
}
|
|
|
|
ul:not(.block-editor-block-variation-picker__variations) {
|
|
li {
|
|
@apply list-disc;
|
|
}
|
|
}
|
|
|
|
ol {
|
|
li {
|
|
@apply list-decimal;
|
|
}
|
|
}
|
|
}
|
|
|
|
.site-content {
|
|
:first-child {
|
|
@apply !mt-0;
|
|
}
|
|
> .carhop-heading {
|
|
@apply px-4 md:px-0;
|
|
}
|
|
p,
|
|
li {
|
|
strong {
|
|
@apply font-bold;
|
|
}
|
|
}
|
|
}
|