44 lines
681 B
SCSS
44 lines
681 B
SCSS
/* Transferred from poole.css */
|
|
|
|
/* Code */
|
|
code,
|
|
pre {
|
|
font-family: $code-font;
|
|
}
|
|
|
|
code {
|
|
padding: .0em .25em;
|
|
font-size: 85%;
|
|
color: $heading-color;
|
|
background-color: #f9f9f9;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
pre {
|
|
display: block;
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
padding: 1rem;
|
|
font-size: .9em;
|
|
line-height: 1.4;
|
|
white-space: pre;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
word-wrap: break-word;
|
|
background-color: #f9f9f9;
|
|
}
|
|
pre code {
|
|
padding: 0;
|
|
font-size: 100%;
|
|
color: inherit;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/* Pygments via Hugo */
|
|
.highlight {
|
|
margin-bottom: 1rem;
|
|
border-radius: 4px;
|
|
}
|
|
.highlight pre {
|
|
margin-bottom: 0;
|
|
}
|