actually make the new site
wait why was this in a seperate repo
This commit is contained in:
parent
c58d39e13c
commit
4b92d6ae07
5 changed files with 288 additions and 0 deletions
32
site/contact.html
Normal file
32
site/contact.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<head>
|
||||
<title>everypizza.im</title>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="content">
|
||||
<a class="link link-large" href="index.html">← Back to homepage</a>
|
||||
<h2>
|
||||
Contact
|
||||
</h2>
|
||||
<hr>
|
||||
Please use one of these:
|
||||
<br>
|
||||
<ul>
|
||||
<li>
|
||||
<a class="link" href="xmpp:nyx@everypizza.im">XMPP/Jabber</a>
|
||||
</li>
|
||||
<br>
|
||||
<li>
|
||||
<a class="link" href="matrix:u/n:everypizza.im">Matrix</a>
|
||||
</li>
|
||||
<br>
|
||||
<li>
|
||||
<a class="link" href="mailto:me@everypizza.im">Email</a>
|
||||
</li>
|
||||
<br>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
148
site/index.css
Normal file
148
site/index.css
Normal file
|
@ -0,0 +1,148 @@
|
|||
.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;
|
||||
font-family: system-ui, sans-serif;
|
||||
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;
|
||||
font-family: system-ui, sans-serif;
|
||||
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-weight: normal;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity:0;
|
||||
}
|
||||
to {
|
||||
opacity:1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes blurIn {
|
||||
from {
|
||||
filter: blur(0.2rem);
|
||||
}
|
||||
to {
|
||||
filter: blur(0rem);
|
||||
}
|
||||
}
|
24
site/index.html
Normal file
24
site/index.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<head>
|
||||
<title>everypizza.im</title>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="center">
|
||||
<h2>
|
||||
Welcome!
|
||||
</h2>
|
||||
<p>
|
||||
These are some services we host. <br>
|
||||
<small>
|
||||
Any of them may go down at any time.
|
||||
</small>
|
||||
</p>
|
||||
<br>
|
||||
<a class="button" href="contact.html">Contact</a>
|
||||
<a class="button" href="rules.html">Rules</a>
|
||||
<a class="button button-white" href="services.html">Services →</a>
|
||||
</div>
|
||||
</body>
|
30
site/rules.html
Normal file
30
site/rules.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<head>
|
||||
<title>everypizza.im</title>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="content">
|
||||
<a class="link link-large" href="index.html">← Back to homepage</a>
|
||||
<h2>
|
||||
Rules
|
||||
</h2>
|
||||
<hr>
|
||||
<ol>
|
||||
<li>
|
||||
Assume good intent in others' actions.
|
||||
</li>
|
||||
<li>
|
||||
Do not use unnecessary resources.
|
||||
</li>
|
||||
<li>
|
||||
Be kind to other users.
|
||||
</li>
|
||||
<li>
|
||||
Follow United States and Texas law.
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</body>
|
54
site/services.html
Normal file
54
site/services.html
Normal file
|
@ -0,0 +1,54 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<head>
|
||||
<title>everypizza.im</title>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="content">
|
||||
<a class="link link-large" href="index.html">← Back to homepage</a>
|
||||
<h2>
|
||||
Services
|
||||
</h2>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>
|
||||
<a class="link" href="https://element.everypizza.im">Element</a> (external or local account)
|
||||
</li>
|
||||
<br>
|
||||
<li>
|
||||
<a class="link" href="https://admin.everypizza.im">Synapse-Admin</a> (external or local account, only works if you administrate a homeserver)
|
||||
</li>
|
||||
<br>
|
||||
<li>
|
||||
<a class="link" href="https://git.everypizza.im">Forgejo</a> (ask for an account!)
|
||||
</li>
|
||||
<br>
|
||||
<li>
|
||||
<a class="link" href="https://matrix.everypizza.im">Matrix (Synapse)</a> (ask for an account!)
|
||||
</li>
|
||||
<br>
|
||||
<li>
|
||||
<a class="link" href="https://thelounge.everypizza.im">The Lounge</a> (ask for an account!)
|
||||
</li>
|
||||
<br>
|
||||
<li>
|
||||
<a class="link" href="https://dash.everypizza.im">Grafana</a> (private)
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<h3>
|
||||
Non-HTTP
|
||||
</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Yggdrasil - tcp://ygg.everypizza.im:9441, tcp://99.10.221.198:9441, or tcp://[2600:1702:4caa:ac10::26]:9441 (publicly accessible)
|
||||
</li>
|
||||
<br>
|
||||
<li>
|
||||
XMPP (Prosody) (private)
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
Loading…
Add table
Reference in a new issue