Initial commit

This commit is contained in:
Chay 2023-12-03 17:05:57 +02:00
commit 64a323f015
2 changed files with 71 additions and 0 deletions

34
index.html Normal file
View File

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css"/>
<title>Altesq</title>
</head>
<body>
<div class="title">
<h1>☭ Altesq</h1>
<h3><i>The Alternate Escape</i></h3>
</div>
<div class="body">
<p>Altesq is a service provider for Leftists to be safe from a pro-capitalist Internet, and it isn't corporate, being an alternative to the Big Web, in which centralized corporate websites prevail. There are not enough services for Marxists to be safe from the harassment of fascists and liberals, we're aiming to fill that gap, being the Alternate Escape.</p>
<p>Registration is request only. Some services work without accounts, you will need to check on a case-by-case basis. DM chay @ this domain on Matrix for more information.</p>
<h3>Services</h3>
<p>You can see the status of the services <a href="https://status.altesq.net/status/services">here</a>.</p>
<ul>
<li><a href="https://pleroma.altesq.net">Pleroma</a> ➜ a fediverse compatible Twitter alternative</li>
<li><a href="https://anki.altesq.net">Anki</a> ➜ a way to sync your flashcards remotely</li>
<li><a href="https://files.altesq.net">Files</a> ➜ sftp storage to store your files</li>
<li><a href="https://git.altesq.net">Git</a> ➜ a fully fledged git forge to host your repositories</li>
<li><a href="https://lemmy.altesq.net">Lemmy</a> ➜ a fediverse compatible Lemmy alternative</li>
<li><a href="https://old.altesq.net">Mlmym</a> ➜ an old-Reddit interface for Lemmy</li>
<li><a href="#">Matrix</a> ➜ a federated encrypted messenger</li>
<li><a href="https://element.altesq.net">Element</a> ➜ a sleek Matrix client</li>
<li><a href="https://cinny.altesq.net">Cinny</a> ➜ a Discord-like Matrix client</li>
<li><a href="#">Mumble</a> ➜ secure low latency voice chat</li>
<li><a href="https://unciv.altesq.net">Unciv</a> ➜ a multiplayer server for a Civ5 FOSS clone</li>
</ul>
</div>
</body>
</html>

37
style.css Normal file
View File

@ -0,0 +1,37 @@
:root {
--color-background: #FFD4D4;
--color-text: #272727;
--highlight: rgba(225,0,0,.2)
}
@media (prefers-color-scheme: dark) {
:root {
--color-background: #333;
--color-text: white;
--highlight: rgba(225,0,0,.3)
}
}
html, body {
background-color: var(--color-background);
color: var(--color-text)
}
body {
margin: 1em auto;
max-width: 40em;
padding: 0.62em 3.24em;
font: 1.2em/1.62 sans-serif;
transition: color 0.5s, font-size 0.5s;
}
a {
text-decoration: none;
background: linear-gradient(180deg,rgba(255,255,255,0) 55%, var(--highlight) 45%);
transition: color 0.5s, font-size 0.5s;
color: var(--color-text);
}
.title {
line-height: 0.5;
}