24 lines
281 B
CSS
24 lines
281 B
CSS
.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;
|
|
}
|