Add new logo.

This commit is contained in:
Jordan Bancino 2022-08-07 14:57:38 -04:00
parent a39b0d9f9a
commit adf85157cc
3 changed files with 20 additions and 0 deletions

6
site/Telodendria.svg Normal file
View file

@ -0,0 +1,6 @@
Telodendria
===========
This is the source code for Telodendria, a Matrix homeserver written
in C. All of the documentation is available at https://telodendria.io,
or in site/index.html.

View file

@ -17,10 +17,12 @@
content="Telodendria, a Matrix homeserver written in ANSI C.">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="Telodendria.svg">
<title>Telodendria | A Matrix Homeserver written in ANSI C.</title>
</head>
<body>
<img id="logo" src="Telodendria.svg" />
<h1 id="telodendria">Telodendria</h1>
<p>
<b>Telodendria:</b> The terminal branches of an axon.

View file

@ -76,6 +76,10 @@ kbd {
white-space: nowrap;
}
h1 {
text-align: center;
}
h1, h4, h5, h6 {
border-bottom: 1px dashed var(--color-table-border);
}
@ -130,3 +134,11 @@ tr:last-of-type td:first-of-type {
tr:last-of-type td:last-of-type {
border-bottom-right-radius: var(--border-radius);
}
/* Thanks Jonah! */
#logo {
display: block;
margin: auto;
width: 50vw;
max-width: 400px;
}