Files
com.xaymar.www/_sass/_block-code.scss
T

31 lines
768 B
SCSS
Raw Normal View History

2022-01-12 21:46:43 +01:00
// --------------------------------------------------------------------------------
// Block: Code
// --------------------------------------------------------------------------------
.block-code {
background: $theme-code-background;
}
.block-code > .content {
display: block;
padding: .25rem;
max-height: 10em;
font-family: monospace;
2022-01-12 21:47:46 +01:00
font-size: 1em;
2022-01-12 21:46:43 +01:00
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;
2022-01-12 22:14:15 +01:00
white-space: normal;
2022-01-12 21:46:43 +01:00
}