48 lines
647 B
CSS
48 lines
647 B
CSS
.article {
|
|
@apply pr-8
|
|
}
|
|
|
|
.article .tunit {
|
|
@apply hover:bg-gray-300;
|
|
}
|
|
|
|
.article a.hide-link {
|
|
display: none;
|
|
}
|
|
|
|
.article.show-boundary a.hide-link {
|
|
display: inline;
|
|
}
|
|
|
|
.article.show-boundary a.show-link {
|
|
display: none;
|
|
}
|
|
|
|
.article.show-boundary span + span.tunit::before {
|
|
content: "🭱";
|
|
color: brown;
|
|
font-weight: bold;
|
|
font-size: 130%;
|
|
vertical-align: -2px;
|
|
}
|
|
|
|
.article h4 {
|
|
@apply font-semibold text-lg leading-8 text-zinc-800;
|
|
}
|
|
|
|
.article p, .article div {
|
|
@apply text-justify;
|
|
}
|
|
|
|
.article p + p {
|
|
@apply indent-4;
|
|
}
|
|
|
|
.article blockquote {
|
|
@apply px-4 py-2 text-sm;
|
|
}
|
|
|
|
.article a {
|
|
@apply text-cyan-900;
|
|
}
|