39 lines
777 B
CSS
39 lines
777 B
CSS
/* Multi-line code blocks */
|
|
pre {
|
|
white-space: pre-wrap !important;
|
|
word-wrap: break-word !important;
|
|
max-width: 100%;
|
|
overflow-x: hidden !important;
|
|
}
|
|
|
|
pre code {
|
|
white-space: pre-wrap !important;
|
|
word-break: break-word !important;
|
|
width: 100%;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Inline code blocks */
|
|
p code {
|
|
white-space: normal !important;
|
|
word-break: normal !important;
|
|
width: auto !important;
|
|
display: inline !important;
|
|
background-color: rgba(175, 184, 193, 0.2);
|
|
padding: 0.2em 0.4em;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
/* Button styling */
|
|
.md-content button {
|
|
padding: 0.175rem 0.25rem;
|
|
margin: 0.125rem;
|
|
}
|
|
|
|
.md-button {
|
|
padding: 0.175rem 0.25rem;
|
|
margin: 0.5rem 0.25rem;
|
|
display: inline-block;
|
|
}
|
|
|