Add details about Matrix stuff

This commit is contained in:
Nyx 2025-02-17 13:52:49 -06:00
parent 11acc952fc
commit 193cb3fadf
3 changed files with 214 additions and 0 deletions

View file

@ -139,6 +139,14 @@ small {
font-weight: 400 font-weight: 400
} }
b {
font-weight: 600 !important;
}
hr.less-important {
border-top: 1px dotted;
}
@keyframes fadeIn { @keyframes fadeIn {
from { from {
opacity:0; opacity:0;

158
site/matrix/index.css Normal file
View file

@ -0,0 +1,158 @@
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap');
.center {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
will-change: transform;
animation: blurIn 500ms ease-in-out;
}
.content {
will-change: transform;
animation: blurIn 500ms ease-in-out;
}
@media (prefers-color-scheme: dark) {
body {
animation: fadeIn 500ms ease-in-out;
background-color: black;
color: white;
margin: 1em auto;
padding: 1em;
max-width: 50em;
}
.button {
display:inline-block;
padding:10px 24px;
margin:2px;
border-radius:24px;
background-color:#1b1b1b;
color:#ffffff;
text-decoration:none;
font-size:16px;
margin-bottom:16px;
box-shadow:inset 0 0.0625rem 0 rgb(255 255 255 / 0.1);
transition: 0.3s ease-out;
}
.button-white {
background-color:#ffffff;
color:#000000
}
.button:hover {
background-color:#ffffff;
color:#000000;
}
.link {
color: #ffffff;
background-color: #1b1b1b;
font-size: 0.9em;
text-decoration: none;
border-radius: 6px;
padding: 0.2em 0.7em;
transition: 0.2s;
}
.link-large {
margin-bottom:16px;
padding:10px 24px;
margin:2px;
border-radius: 30px
}
.link:hover {
color: #000000;
background-color: #ffffff;
}
}
@media (prefers-color-scheme: light) {
body {
animation: fadeIn 500ms ease-in-out;
background-color: white;
color: black;
margin: 1em auto;
padding: 1em;
max-width: 50em;
}
.button {
display:inline-block;
padding:10px 24px;
margin:2px;
border-radius:24px;
background-color: #ebebeb;
color: black;
text-decoration:none;
font-size:16px;
margin-bottom:16px;
box-shadow:inset 0 0.0625rem 0 rgb(255 255 255 / 0.1);
transition: 0.3s ease-out;
}
.button-white {
background-color: black;
color: white
}
.button:hover {
background-color: black;
color: white;
}
.link {
color: black;
background-color: #ebebeb;
font-size: 0.9em;
text-decoration: none;
border-radius: 6px;
padding: 0.2em 0.7em;
transition: 0.2s;
}
.link-large {
margin-bottom:16px;
padding:10px 24px;
margin:2px;
border-radius: 30px
}
.link:hover {
color: white;
background-color: black;
}
}
h1, h2, h3 {
font-family: "Atkinson Hyperlegible Mono", monospace;
font-weight: 600
}
small {
font-weight: 200
}
* {
font-family: "Atkinson Hyperlegible Next", sans-serif;
font-weight: 400
}
@keyframes fadeIn {
from {
opacity:0;
}
to {
opacity:1;
}
}
@keyframes blurIn {
from {
filter: blur(0.2rem);
}
to {
filter: blur(0rem);
}
}

48
site/matrix/index.html Normal file
View file

@ -0,0 +1,48 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>everypizza.im</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="content">
<a class="link link-large" href="/services.html">← Back to services</a>
<h2>
Matrix homeserver info
</h2>
<hr>
<p>
The Matrix homeserver is under a dynamic IP, so conduwuit servers will have federation problems at times.
Addtionally, 1 homeserver (transfem(dot)dev) has <b>intentionally</b> blocked federation with us due to interpersonal conflicts.
A few very large rooms are banned on the server.
</p>
<hr class="less-important">
<p>
Addtionally, for the saftey of our users, we have blocked some servers. For transparency reasons, here's the list:
<details>
<summary>
Blocked servers
</summary>
<ul>
<li>
Every domain owned by June
<details>
<summary>
Reasoning
</summary>
The domains make the admin uncomftrable.
</details>
</li>
<li>
sulian.eu
<details>
<summary>
Reasoning
</summary>
Server administrator was being excessively disruptive.
</details>
</li>
</ul>
</details>
</div>
</body>