stacker.news/components/text.module.css

49 lines
731 B
CSS
Raw Normal View History

2021-04-14 23:56:29 +00:00
.text {
font-size: 94%;
2021-06-27 22:28:30 +00:00
font-family: inherit;
2021-10-29 17:56:31 +00:00
word-break: break-word;
line-height: 140%;
2021-06-27 22:28:30 +00:00
}
@media screen and (min-width: 767px) {
.text {
line-height: 130%;
}
}
2021-06-27 22:28:30 +00:00
.text p {
margin-bottom: .5rem;
2021-04-14 23:56:29 +00:00
white-space: pre-wrap;
word-break: break-word;
2021-06-27 22:28:30 +00:00
}
.text pre {
margin-bottom: .5rem;
}
.text pre > div {
margin: 0 !important;
}
2021-06-27 22:28:30 +00:00
.text > *:last-child {
margin-bottom: 0 !important;
}
.text blockquote > *:last-child {
margin-bottom: 0 !important;
2021-06-27 22:28:30 +00:00
}
.text img {
max-width: 100%;
max-height: 300px;
}
.text table {
width: auto;
}
.text blockquote {
border-left: 2px solid var(--theme-grey);
2021-06-27 22:28:30 +00:00
padding-left: 1rem;
margin: 0 0 0.5rem 0.5rem !important;
2021-04-14 23:56:29 +00:00
}