32 lines
567 B
Plaintext
32 lines
567 B
Plaintext
.markdown {
|
|
p,
|
|
li {
|
|
a {
|
|
@apply .link;
|
|
}
|
|
}
|
|
|
|
p,
|
|
li {
|
|
code {
|
|
@apply .bg-grey-lighter .inline-block .font-mono .text-xs;
|
|
padding: 1px 3px;
|
|
}
|
|
}
|
|
|
|
pre code,
|
|
pre code.hljs,
|
|
.hljs {
|
|
@apply .bg-grey-lighter;
|
|
@apply .block;
|
|
@apply .border-grey-dark;
|
|
@apply .border-l-4;
|
|
@apply .font-mono;
|
|
@apply .leading-loose;
|
|
@apply .overflow-x-scroll;
|
|
@apply .p-4;
|
|
@apply .rounded;
|
|
@apply .text-xs;
|
|
}
|
|
}
|