forked from Telodendria/Telodendria
Highlight the note at the top of the documentation.
This commit is contained in:
parent
bbca61bfad
commit
710b1a7b81
2 changed files with 14 additions and 2 deletions
|
@ -25,10 +25,10 @@
|
||||||
<p>
|
<p>
|
||||||
<b>Telodendria:</b> The terminal branches of an axon.
|
<b>Telodendria:</b> The terminal branches of an axon.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<div class="msg-error">
|
||||||
<b><i>Note:</i></b> <b>Telodendria</b> is under <i>heavy</i> development.
|
<b><i>Note:</i></b> <b>Telodendria</b> is under <i>heavy</i> development.
|
||||||
Please see the <a href="#project-status">Project Status</a>.
|
Please see the <a href="#project-status">Project Status</a>.
|
||||||
</p>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
<b>Telodendria</b> is a Matrix homeserver implementation written from
|
<b>Telodendria</b> is a Matrix homeserver implementation written from
|
||||||
scratch in ANSI C. It is designed to be lightweight and simple, yet
|
scratch in ANSI C. It is designed to be lightweight and simple, yet
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
|
|
||||||
--color-table-border: #d0d7de;
|
--color-table-border: #d0d7de;
|
||||||
--color-table-accent: #f6f8fa;
|
--color-table-accent: #f6f8fa;
|
||||||
|
|
||||||
|
--color-error-bg: #ffdce0;
|
||||||
|
--color-error: #bd181e;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media(prefers-color-scheme: dark) {
|
@media(prefers-color-scheme: dark) {
|
||||||
|
@ -19,6 +22,8 @@
|
||||||
|
|
||||||
--color-table-border: #30363d;
|
--color-table-border: #30363d;
|
||||||
--color-table-accent: #161b22;
|
--color-table-accent: #161b22;
|
||||||
|
|
||||||
|
--color-error-bg: #3f1e23;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,6 +38,13 @@ body {
|
||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.msg-error {
|
||||||
|
background-color: var(--color-error-bg);
|
||||||
|
color: var(--color-error);
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
.code {
|
.code {
|
||||||
background-color: var(--color-snippet);
|
background-color: var(--color-snippet);
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
|
|
Loading…
Reference in a new issue