This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/assets/css/components/markdown.css

31 lines
509 B
CSS
Raw Normal View History

.markdown {
h2 {
@apply mt-8 mb-3 text-black;
}
h2, h3 {
@apply text-black;
}
2018-10-25 00:35:06 +00:00
p,
li {
a {
@apply link;
}
code {
@apply bg-grey-lighter inline-block font-mono text-sm px-1 py-px;
}
}
2018-10-25 00:35:06 +00:00
p:last-child {
@apply mb-0;
}
pre code,
.hljs {
2018-10-25 00:35:06 +00:00
@apply bg-grey-lighter block border-grey-dark border-l-4 font-mono;
@apply leading-loose overflow-x-scroll p-6 rounded text-sm;
}
}