wordcamp-bristol-2019/wp-content/themes/twentynineteen-tailwindcss/src/css/components/content.css

36 lines
397 B
CSS
Raw Normal View History

2019-03-23 08:24:56 +00:00
.entry-content {
2019-03-23 07:32:01 +00:00
@apply font-serif text-lg leading-loose;
@screen md {
@apply text-xl
}
h2 {
@apply text-2xl font-bold mt-8 -mb-5
}
a {
@apply text-blue-700 underline;
&:hover {
@apply text-blue-800 no-underline
}
}
* + * {
@apply mt-6
}
2019-03-23 08:24:56 +00:00
p {
@apply font-serif
}
2019-03-23 07:32:01 +00:00
ul {
@apply list-disc ml-6
}
li + li {
@apply mt-0
}
}