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

112 lines
1.2 KiB
CSS
Raw Normal View History

2019-11-12 09:45:06 +00:00
.markup {
2020-02-06 01:31:43 +00:00
a {
@apply underline;
2018-12-30 00:31:50 +00:00
2020-02-06 01:31:43 +00:00
&:hover {
@apply no-underline
}
&:focus {
@apply p-px -m-px bg-blue-700 text-white outline-none
}
2019-11-12 09:45:06 +00:00
}
2019-02-12 23:06:12 +00:00
2020-02-06 01:31:43 +00:00
p {
@apply leading-relaxed;
+ p {
@apply mt-4
}
2019-11-12 09:45:06 +00:00
}
2020-02-06 01:31:43 +00:00
ol {
@apply list-decimal
}
ul {
@apply list-disc;
2019-11-12 09:45:06 +00:00
}
2019-02-13 01:52:53 +00:00
ol,
2020-02-06 01:31:43 +00:00
ul {
@apply pl-5;
li + li {
@apply mt-4
2019-11-12 09:45:06 +00:00
}
}
2018-12-07 22:45:27 +00:00
2020-02-06 01:31:43 +00:00
p {
+ blockquote,
+ ol,
+ ul,
+ div[v-pre] {
@apply mt-4
}
2019-11-12 09:45:06 +00:00
}
2019-03-21 09:19:19 +00:00
blockquote + * {
@apply mt-4
}
2019-11-12 09:45:06 +00:00
code {
2020-02-06 01:31:43 +00:00
@apply -my-px px-1 py-px border border-gray-400 text-sm bg-gray-200
2019-11-12 09:45:06 +00:00
}
2018-12-30 00:31:50 +00:00
2020-02-06 01:31:43 +00:00
pre {
2020-02-23 19:58:21 +00:00
@apply border-l-3 border-gray-400 text-sm bg-gray-200;
2020-02-06 01:31:43 +00:00
2019-11-12 09:45:06 +00:00
code {
2020-02-06 01:31:43 +00:00
@apply p-6 block border-none leading-loose text-sm overflow-x-scroll
}
}
* + pre,
* + div[v-pre] {
@apply my-4
}
img,
figure {
@apply my-8
}
figure {
img {
@apply m-0
2019-11-12 09:45:06 +00:00
}
2020-02-06 01:31:43 +00:00
figcaption {
@apply mt-3
}
}
h2 {
@apply leading-tight
}
* + h2 {
@apply mt-8
}
h2 + * {
@apply mt-4
}
h3 {
@apply text-xl font-bold leading-tight
2019-11-12 09:45:06 +00:00
}
2018-12-07 22:45:27 +00:00
2020-02-06 01:31:43 +00:00
* + h3 {
@apply mt-6
2019-11-12 09:45:06 +00:00
}
2018-12-29 02:13:20 +00:00
2020-02-06 01:31:43 +00:00
h3 + * {
@apply mt-2
2019-11-12 09:45:06 +00:00
}
2018-12-29 02:13:20 +00:00
2020-02-06 01:31:43 +00:00
h2 + h3 {
@apply mt-4
2019-11-12 09:45:06 +00:00
}
}