Markdown spoilers and post footers on videos

This commit is contained in:
spikecodes 2021-01-08 21:57:36 -08:00
parent ef1ad17234
commit fac56d7f87
3 changed files with 17 additions and 5 deletions

View file

@ -16,7 +16,8 @@
background: var(--accent);
}
* {
html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote,
pre, form, fieldset, table, th, td, select, input {
margin: 0;
color: var(--text);
font-family: sans-serif;
@ -698,10 +699,20 @@ input[type="submit"] {
border-left: 4px solid var(--highlighted);
}
.md a {
.md a, .md a * {
color: var(--accent);
}
.md .md-spoiler-text {
background: var(--highlighted);
color: transparent;
}
.md .md-spoiler-text:hover {
background: var(--foreground);
color: var(--text);
}
.md li { margin: 10px 0; }
.toc_child { list-style: none; }