Add content styling
This commit is contained in:
parent
960015e26b
commit
f014c06343
|
@ -13,8 +13,10 @@ if ( have_posts() ) : ?>
|
||||||
</a>
|
</a>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<div class="max-w-xl font-serif text-xl leading-loose">
|
<div class="max-w-xl">
|
||||||
<?php the_content(); ?>
|
<div class="content">
|
||||||
|
<?php the_content(); ?>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer class="text-grey-darker my-10">
|
<footer class="text-grey-darker my-10">
|
||||||
|
|
|
@ -11,4 +11,24 @@ a:focus {
|
||||||
|
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
|
|
||||||
|
.content {
|
||||||
|
@apply font-serif text-xl leading-loose;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
@apply text-2xl font-bold mt-8 -mb-5
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
@apply text-black font-bold
|
||||||
|
}
|
||||||
|
|
||||||
|
* + * {
|
||||||
|
@apply mt-6
|
||||||
|
}
|
||||||
|
|
||||||
|
li + li {
|
||||||
|
@apply mt-0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
Loading…
Reference in a new issue