oliverdavies.uk/website/assets/css/components.pcss

75 lines
960 B
Plaintext
Raw Normal View History

@layer components {
2021-06-30 07:00:00 +00:00
.link {
2021-09-08 22:13:12 +00:00
@apply underline text-blue-primary hover:text-blue-900 dark:text-blue-400 dark:hover:text-white;
2021-06-30 07:00:00 +00:00
text-decoration-thickness: 1px;
text-underline-offset: 0.1em;
}
.markdown {
2021-06-30 07:00:00 +00:00
> * + * {
@apply mt-4;
}
> *:first-child {
@apply mt-0;
}
h2 + * {
@apply mt-2;
}
h2 {
@apply mt-6;
}
2021-07-15 21:38:16 +00:00
h3 {
@apply mt-8 font-bold;
2021-07-15 21:38:16 +00:00
}
h2 + h3 {
@apply mt-2
}
2021-06-30 07:00:00 +00:00
blockquote {
@apply my-8;
}
2022-11-05 21:53:50 +00:00
ol {
@apply pl-6 list-decimal;
}
ul {
@apply pl-6 list-disc;
}
li {
2021-07-15 21:38:26 +00:00
@apply mt-1 first:mt-0;
}
2021-06-30 07:00:00 +00:00
a {
@apply link;
}
2021-06-30 07:00:00 +00:00
pre {
@apply my-8;
}
2021-06-30 07:00:00 +00:00
pre code {
@apply block;
}
2021-06-30 07:00:00 +00:00
.media--type-image {
@apply my-8;
}
.speakerdeck-embed-wrapper,
.video-full {
2021-06-30 07:00:00 +00:00
@apply my-8 aspect-w-4 aspect-h-3;
2021-06-30 07:00:00 +00:00
}
}
.visually-hidden {
@apply sr-only;
}
}