snort/packages/app/src/Element/Text.css

86 lines
1.1 KiB
CSS
Raw Normal View History

2023-01-26 06:13:09 +00:00
.text {
font-size: var(--font-size);
line-height: 24px;
2023-02-17 16:42:10 +00:00
white-space: pre-wrap;
word-break: break-word;
2023-01-26 06:13:09 +00:00
}
2023-04-18 21:20:13 +00:00
.text > a {
color: var(--highlight);
text-decoration: none;
2023-01-20 15:57:45 +00:00
}
2023-02-17 16:42:10 +00:00
2023-01-20 15:57:45 +00:00
.text a:hover {
text-decoration: underline;
2023-01-14 14:37:31 +00:00
}
.text h1 {
margin: 0;
2023-01-14 14:37:31 +00:00
}
.text h2 {
margin: 0;
2023-01-14 14:37:31 +00:00
}
.text h3 {
margin: 0;
2023-01-14 14:37:31 +00:00
}
.text h4 {
margin: 0;
2023-01-14 14:37:31 +00:00
}
.text h5 {
margin: 0;
2023-01-14 14:37:31 +00:00
}
.text h6 {
margin: 0;
2023-01-14 14:37:31 +00:00
}
.text p {
margin: 0;
margin-bottom: 4px;
2023-01-14 14:37:31 +00:00
}
2023-01-20 15:57:45 +00:00
.text p:last-child {
margin-bottom: 0;
2023-01-20 15:57:45 +00:00
}
2023-01-14 14:37:31 +00:00
.text pre {
margin: 0;
2023-01-14 14:37:31 +00:00
}
2023-01-16 15:17:08 +00:00
.text li {
margin-top: -1em;
2023-01-16 15:17:08 +00:00
}
.text li:last-child {
margin-bottom: -2em;
2023-01-16 15:17:08 +00:00
}
2023-01-14 14:37:31 +00:00
.text hr {
border: 0;
height: 1px;
background-image: var(--gray-gradient);
margin: 20px;
2023-01-14 14:37:31 +00:00
}
.text img,
.text video,
.text iframe,
.text audio {
max-width: 100%;
max-height: 500px;
margin: 10px auto;
display: block;
border-radius: 12px;
2023-01-14 14:37:31 +00:00
}
.text iframe,
.text video {
width: -webkit-fill-available;
aspect-ratio: 16 / 9;
2023-01-14 14:37:31 +00:00
}
.text blockquote {
margin: 0;
color: var(--font-secondary-color);
border-left: 2px solid var(--font-secondary-color);
padding-left: 12px;
}