forked from lda/telodendria
Add new logo.
This commit is contained in:
parent
a39b0d9f9a
commit
adf85157cc
3 changed files with 20 additions and 0 deletions
6
site/Telodendria.svg
Normal file
6
site/Telodendria.svg
Normal 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.
|
|
@ -17,10 +17,12 @@
|
||||||
content="Telodendria, a Matrix homeserver written in ANSI C.">
|
content="Telodendria, a Matrix homeserver written in ANSI C.">
|
||||||
|
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
|
<link rel="icon" href="Telodendria.svg">
|
||||||
|
|
||||||
<title>Telodendria | A Matrix Homeserver written in ANSI C.</title>
|
<title>Telodendria | A Matrix Homeserver written in ANSI C.</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<img id="logo" src="Telodendria.svg" />
|
||||||
<h1 id="telodendria">Telodendria</h1>
|
<h1 id="telodendria">Telodendria</h1>
|
||||||
<p>
|
<p>
|
||||||
<b>Telodendria:</b> The terminal branches of an axon.
|
<b>Telodendria:</b> The terminal branches of an axon.
|
||||||
|
|
|
@ -76,6 +76,10 @@ kbd {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
h1, h4, h5, h6 {
|
h1, h4, h5, h6 {
|
||||||
border-bottom: 1px dashed var(--color-table-border);
|
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 {
|
tr:last-of-type td:last-of-type {
|
||||||
border-bottom-right-radius: var(--border-radius);
|
border-bottom-right-radius: var(--border-radius);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Thanks Jonah! */
|
||||||
|
#logo {
|
||||||
|
display: block;
|
||||||
|
margin: auto;
|
||||||
|
width: 50vw;
|
||||||
|
max-width: 400px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue