Highlight the note at the top of the documentation.

This commit is contained in:
Jordan Bancino 2022-07-28 20:52:40 -04:00
parent bbca61bfad
commit 710b1a7b81
2 changed files with 14 additions and 2 deletions

View file

@ -25,10 +25,10 @@
<p>
<b>Telodendria:</b> The terminal branches of an axon.
</p>
<p>
<div class="msg-error">
<b><i>Note:</i></b> <b>Telodendria</b> is under <i>heavy</i> development.
Please see the <a href="#project-status">Project Status</a>.
</p>
</div>
<p>
<b>Telodendria</b> is a Matrix homeserver implementation written from
scratch in ANSI C. It is designed to be lightweight and simple, yet

View file

@ -8,6 +8,9 @@
--color-table-border: #d0d7de;
--color-table-accent: #f6f8fa;
--color-error-bg: #ffdce0;
--color-error: #bd181e;
}
@media(prefers-color-scheme: dark) {
@ -19,6 +22,8 @@
--color-table-border: #30363d;
--color-table-accent: #161b22;
--color-error-bg: #3f1e23;
}
}
@ -33,6 +38,13 @@ body {
font-family: Arial;
}
.msg-error {
background-color: var(--color-error-bg);
color: var(--color-error);
border-radius: var(--border-radius);
padding: 20px;
}
.code {
background-color: var(--color-snippet);
border-radius: var(--border-radius);