60 lines
1.2 KiB
CSS
60 lines
1.2 KiB
CSS
.status-content strong {
|
|
@apply font-bold;
|
|
}
|
|
|
|
.status-content em {
|
|
@apply italic;
|
|
}
|
|
|
|
.status-content ul,
|
|
.status-content ol {
|
|
@apply pl-10 mb-5;
|
|
}
|
|
|
|
.status-content ul {
|
|
@apply list-disc list-outside;
|
|
}
|
|
|
|
.status-content ol {
|
|
@apply list-decimal list-outside;
|
|
}
|
|
|
|
.status-content blockquote {
|
|
@apply py-1 pl-4 mb-5 border-l-4 border-solid border-gray-400 text-gray-500 dark:text-gray-400;
|
|
}
|
|
|
|
.status-content code {
|
|
@apply cursor-text font-mono;
|
|
}
|
|
|
|
.status-content p > code,
|
|
.status-content pre {
|
|
@apply bg-gray-100 dark:bg-primary-800;
|
|
}
|
|
|
|
/* Inline code */
|
|
.status-content p > code {
|
|
@apply py-0.5 px-1 rounded-sm;
|
|
}
|
|
|
|
/* Code block */
|
|
.status-content pre {
|
|
@apply py-2 px-3 mb-5 leading-6 overflow-x-auto rounded-md break-all;
|
|
}
|
|
|
|
.status-content pre:last-child {
|
|
@apply mb-0;
|
|
}
|
|
|
|
/* Markdown images */
|
|
.status-content img:not(.emojione):not([width][height]) {
|
|
@apply w-full h-72 object-contain rounded-lg overflow-hidden my-5 block;
|
|
}
|
|
|
|
.status-content .big-emoji img.emojione {
|
|
@apply inline w-9 h-9 p-1;
|
|
}
|
|
|
|
.status-content .status-link {
|
|
@apply hover:underline text-primary-600 dark:text-accent-blue hover:text-primary-800 dark:hover:text-accent-blue;
|
|
}
|