mirror of https://github.com/dapr/docs.git
58 lines
1.0 KiB
SCSS
58 lines
1.0 KiB
SCSS
// Code formatting.
|
|
|
|
.td-content {
|
|
// Highlighted code.
|
|
.highlight {
|
|
@extend .card;
|
|
|
|
margin: 2rem 0;
|
|
padding: 0;
|
|
|
|
max-width: 80%;
|
|
|
|
pre {
|
|
margin: 0;
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
|
|
// Inline code
|
|
p code, li > code, table code {
|
|
color: inherit;
|
|
padding: 0.2em 0.4em;
|
|
margin: 0;
|
|
font-size: 85%;
|
|
word-break: normal;
|
|
background-color: rgba($black, 0.05);
|
|
border-radius: $border-radius;
|
|
|
|
br {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
|
|
// Code blocks
|
|
pre {
|
|
word-wrap: normal;
|
|
background-color: $gray-100;
|
|
padding: $spacer;
|
|
|
|
|
|
> code {
|
|
background-color: inherit !important;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: 100%;
|
|
word-break: normal;
|
|
white-space: pre;
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
pre.mermaid {
|
|
background-color: inherit;
|
|
font-size: 0;
|
|
}
|
|
}
|