Files
com.xaymar.www/_sass/_block-code.scss
T
Michael Fabian 'Xaymar' Dirks 1356033b66 Fix inline code
2022-01-12 22:14:15 +01:00

33 lines
804 B
SCSS

// --------------------------------------------------------------------------------
// Block: Code
// --------------------------------------------------------------------------------
.block-code {
padding: .2rem;
background: $theme-code-background;
font-size: 0.9em;
}
.block-code > .content {
display: block;
padding: .25rem;
max-height: 10em;
font-family: monospace;
font-size: 1em;
line-height: 1.25em;
white-space: pre;
overflow: auto;
}
// --------------------------------------------------------------------------------
// Inline: Code
// --------------------------------------------------------------------------------
.inline-code {
margin: 0;
padding: 0;
background: $theme-code-background;
font-family: monospace;
font-size: 1em;
line-height: 1.25em;
white-space: normal;
}