26 lines
368 B
CSS
26 lines
368 B
CSS
.prose pre:not(.shiki) {
|
|
padding: 0;
|
|
}
|
|
|
|
.prose .shiki {
|
|
font-family: 'DM Mono', monospace;
|
|
font-size: 1.2em;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.prose img {
|
|
width: 100%;
|
|
}
|
|
|
|
.shiki,
|
|
.shiki span {
|
|
color: var(--shiki-light);
|
|
background: var(--shiki-light-bg);
|
|
}
|
|
|
|
html.dark .shiki,
|
|
html.dark .shiki span {
|
|
color: var(--shiki-dark);
|
|
background: var(--shiki-dark-bg);
|
|
}
|