Add some styles for articles

This commit is contained in:
Thelonius Kort
2022-12-29 13:46:47 +01:00
parent bedf8bb005
commit 60a22d011e
2 changed files with 24 additions and 0 deletions

View File

@ -3,3 +3,4 @@
@import "tailwindcss/utilities";
/* This file is for your main application CSS */
@import "./article.css"

23
assets/css/article.css Normal file
View File

@ -0,0 +1,23 @@
.article {
@apply pr-8
}
.article .tunit {
@apply hover:bg-gray-300;
}
.article h4 {
@apply font-semibold text-lg leading-8 text-zinc-800;
}
.article p {
@apply text-justify;
}
.article p + p {
@apply indent-4;
}
.article blockquote {
@apply px-4 py-2 text-sm;
}