tvl-depot/scss/theme.scss

52 lines
736 B
SCSS
Raw Normal View History

2019-11-16 02:21:30 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
@apply text-gray-800;
}
h1, h2, h3, h4, h5, h6, strong {
@apply text-gray-900;
}
article > p, ul, ol {
@apply text-lg tracking-wide;
}
2019-11-19 19:36:13 +01:00
article > div, p, ul, ol, pre:not(:last-child) {
2019-11-16 02:21:30 +01:00
@apply mb-6;
}
article > ol, ul {
@apply list-disc ml-8;
}
article > li:not(:last-of-type) {
@apply mb-2;
}
article p > code {
@apply p-1/2 bg-gray-400;
}
article > h2 {
@apply text-2xl my-8 font-bold text-black;
}
a {
@apply border-b border-black text-black;
}
2019-11-19 19:36:13 +01:00
/* purgecss ignore */
pre.chroma {
@apply p-4 overflow-x-auto font-mono text-lg;
}
@screen md {
/* purgecss ignore */
div.highlight {
@apply -mx-12;
}
}