Files
com.xaymar.www/_sass/_block-code.scss
T
Michael Fabian 'Xaymar' Dirks 065a63f60b Fix code styling
2022-01-12 22:16:38 +01:00

31 lines
768 B
SCSS

// --------------------------------------------------------------------------------
// Block: Code
// --------------------------------------------------------------------------------
.block-code {
background: $theme-code-background;
}
.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;
}