31 lines
768 B
SCSS
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;
|
|
}
|