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

46 lines
515 B
CSS
Raw Normal View History

2019-04-16 22:18:02 +00:00
.markup,
.comment-content,
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 {
2019-04-16 19:43:59 +00:00
@apply text-xl;
2019-03-23 07:32:01 +00:00
}
2019-04-16 20:23:13 +00:00
> * {
2019-05-08 20:05:22 +00:00
@apply max-w-xl;
2019-04-16 20:23:13 +00:00
@screen 2xl {
@apply max-w-full;
}
}
2019-03-23 07:32:01 +00:00
h2 {
2019-04-16 19:43:59 +00:00
@apply text-2xl font-bold mt-8 -mb-5;
2019-03-23 07:32:01 +00:00
}
a {
@apply text-blue-700 underline;
&:hover {
2019-04-16 19:43:59 +00:00
@apply text-blue-800 no-underline;
2019-03-23 07:32:01 +00:00
}
}
* + * {
2019-04-16 19:43:59 +00:00
@apply mt-6;
2019-03-23 07:32:01 +00:00
}
2019-03-23 08:24:56 +00:00
p {
2019-04-16 19:43:59 +00:00
@apply font-serif;
2019-03-23 08:24:56 +00:00
}
2019-03-23 07:32:01 +00:00
ul {
2019-04-16 19:43:59 +00:00
@apply list-disc ml-6;
2019-03-23 07:32:01 +00:00
}
li + li {
2019-04-16 19:43:59 +00:00
@apply mt-0;
2019-03-23 07:32:01 +00:00
}
}