33 lines
514 B
CSS
33 lines
514 B
CSS
html {
|
|
background-color: black;
|
|
}
|
|
|
|
.news-post a {
|
|
color: var(--color-link) !important;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.news-post br {
|
|
display: block;
|
|
margin-top: 1em;
|
|
content: " ";
|
|
}
|
|
|
|
.news-post h1,
|
|
.news-post h2,
|
|
.news-post h3,
|
|
.news-post h4 {
|
|
margin-top: 1em !important;
|
|
margin-bottom: 1em !important;
|
|
}
|
|
|
|
.news-post p {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.news-post pre,
|
|
.news-post code {
|
|
font-family: monospace;
|
|
background-color: #eee !important;
|
|
padding: 0.5em !important;
|
|
} |