32 lines
413 B
CSS
32 lines
413 B
CSS
.text {
|
|
font-size: 90%;
|
|
font-family: inherit;
|
|
}
|
|
|
|
.text p {
|
|
margin-bottom: .5rem;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.text pre {
|
|
margin-bottom: .5rem;
|
|
}
|
|
|
|
.text > *:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.text img {
|
|
max-width: 100%;
|
|
max-height: 300px;
|
|
}
|
|
|
|
.text table {
|
|
width: auto;
|
|
}
|
|
|
|
.text blockquote {
|
|
border-left: 2px solid #212529;
|
|
padding-left: 1rem;
|
|
} |