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

46 lines
507 B
CSS
Raw Normal View History

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