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/markup.css
2019-03-21 09:19:19 +00:00

54 lines
644 B
CSS

.markup {
@apply leading-normal;
h2,
h3 {
@apply text-black mb-3
}
h2 {
@apply mt-6 mb-2
}
p,
ul,
ol,
table,
figure,
pre,
[v-pre] {
&:not(:last-child) {
@apply mb-6
}
}
ul {
@apply list-disc ml-5
}
code {
@apply bg-grey-lighter font-mono text-sm
}
p,
li {
code {
@apply inline-block border border-grey-light font-bold mx-px p-1 leading-none
}
}
pre code,
.hljs {
@apply block leading-loose overflow-x-scroll p-6
}
figure,
img {
@apply block
}
figcaption {
@apply italic text-sm text-grey-darker text-center mb-0 mt-1
}
}