presentations/wp-content/themes/twentynineteen-tailwindcss/resources/css/components/content.css

45 lines
507 B
CSS

.markup,
.comment-content,
.entry-content {
@apply font-serif text-lg leading-loose;
@screen md {
@apply text-xl
}
> * {
@apply max-w-xl;
@screen 2xl {
@apply max-w-full
}
}
h2 {
@apply mt-8 -mb-5 text-2xl font-bold
}
a {
@apply text-blue-700 underline;
&:hover {
@apply text-blue-800 no-underline
}
}
* + * {
@apply mt-6
}
p {
@apply font-serif
}
ul {
@apply ml-6 list-disc
}
li + li {
@apply mt-0
}
}