oliverdavies.uk/assets/css/base.pcss

31 lines
553 B
Plaintext
Raw Normal View History

@layer base {
h2 {
@apply font-bold
}
2021-06-30 07:00:00 +00:00
2021-06-30 07:00:00 +00:00
blockquote {
2021-09-08 22:13:12 +00:00
@apply pl-4 border-l-3 border-blue-primary dark:border-blue-400;
2021-06-30 07:00:00 +00:00
}
2021-06-30 07:00:00 +00:00
code {
2022-10-22 11:19:47 +00:00
@apply px-2 py-1 text-sm rounded-md text-grey-700 bg-grey-200 dark:bg-grey-800 dark:text-grey-100;
2021-06-30 07:00:00 +00:00
}
pre {
2022-10-22 11:19:47 +00:00
@apply p-4 my-8 overflow-auto rounded-md text-grey-700 bg-grey-200 dark:bg-grey-800 dark:text-grey-100;
2021-06-30 07:00:00 +00:00
}
2021-06-30 07:00:00 +00:00
pre code {
@apply bg-transparent;
}
2021-06-30 07:00:00 +00:00
iframe {
@apply w-full;
}
2021-10-05 11:00:00 +00:00
a:focus {
@apply outline-black dark:outline-white;
outline-offset: 2px !important;
}
}