blob: 01fc954140176a1b1c0a5a7aba7927d27f6bc472 (
plain) (
tree)
|
|
// -- zola syntax highlighting (https://www.getzola.org/documentation/content/syntax-highlighting/#styling-codeblocks)
pre {
padding: 0.5rem;
overflow: auto;
border-radius: 0.25rem;
}
pre[data-linenos] {
padding: 1rem 0;
}
pre table td {
padding: 0;
}
pre table td:nth-of-type(1) {
text-align: center;
user-select: none;
}
pre mark {
display: block;
background-color: rgba(254, 252, 232, 0.9);
}
pre table {
width: 100%;
border-collapse: collapse;
}
|