44 lines
1.0 KiB
CSS
44 lines
1.0 KiB
CSS
:root {
|
|
--code-padding-x: 1.25rem;
|
|
--code-padding-y: 1rem;
|
|
--code-border-radius: 6px;
|
|
--code-line-height: 1.6;
|
|
--code-font-family: consolas, monaco, "Andale Mono", "Ubuntu Mono", monospace;
|
|
}
|
|
|
|
div[class*=language-] {
|
|
position: relative;
|
|
border-radius: var(--code-border-radius);
|
|
background-color: var(--code-c-bg);
|
|
}
|
|
div[class*=language-]::before {
|
|
content: attr(data-title);
|
|
position: absolute;
|
|
top: 0.8em;
|
|
right: 1em;
|
|
z-index: 3;
|
|
color: var(--code-c-text);
|
|
font-size: 0.75rem;
|
|
}
|
|
div[class*=language-] pre {
|
|
position: relative;
|
|
z-index: 1;
|
|
overflow-x: auto;
|
|
margin: 0.75rem 0;
|
|
border-radius: var(--code-border-radius);
|
|
font-size: 14px;
|
|
font-family: var(--code-font-family);
|
|
line-height: var(--code-line-height);
|
|
}
|
|
div[class*=language-] pre code {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
width: fit-content;
|
|
min-width: 100%;
|
|
padding: var(--code-padding-y) var(--code-padding-x);
|
|
background-color: transparent !important;
|
|
overflow-wrap: unset;
|
|
-webkit-font-smoothing: auto;
|
|
-moz-osx-font-smoothing: auto;
|
|
}
|