backwards compatibility

This commit is contained in:
chyzman
2026-08-28 21:58:19 -04:00
parent fe40fca356
commit 9b3b69ef23
10 changed files with 230 additions and 56 deletions
+25 -14
View File
@@ -825,15 +825,8 @@ a:not(.no-click-animation),
padding-block-start: 0;
}
blockquote,
details,
dl,
ol,
p,
code,
pre,
table,
ul {
> * {
margin-top: 0;
margin-bottom: 16px;
}
@@ -844,13 +837,31 @@ a:not(.no-click-animation),
line-height: 1.5;
}
ul.contains-task-list,
li.task-list-item {
list-style: none;
p {
margin-top: 0;
margin-bottom: 16px;
}
.task-list-item-checkbox {
margin-right: 0.5em;
ul {
list-style: disc;
padding-left: 1.5em;
ul {
list-style: circle;
ul {
list-style: square;
}
}
}
ol {
list-style: decimal;
padding-left: 1.5em;
}
li.task-list-item {
list-style: none;
}
h1 {
-17
View File
@@ -70,20 +70,3 @@
.hljs-strong {
font-weight: bold;
}
pre {
background-color: #222222;
padding: 1em 1em 1em 1em;
border-width: 5px;
border-radius: 2em;
border-color: var(--color-divider);
overflow-x: hidden;
code {
line-height: 100%;
padding: 0.2em;
letter-spacing: -0.05em;
word-break: normal;
font-family: monospace;
}
}