init!
This commit is contained in:
+58
@@ -0,0 +1,58 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>RedGarden</title>
|
||||||
|
<link rel="stylesheet" href="main.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="page">
|
||||||
|
<header>
|
||||||
|
<img src="/redgarden.svg" alt="RedGarden Logo">
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<p>
|
||||||
|
Red garden is a project ran by Stabosa87 Otherwise known as stab aka me.
|
||||||
|
I made red garden because i love foss and i wanna contribute any way i can.
|
||||||
|
And also because i wanna use these services myself and let my friends use them
|
||||||
|
so might aswell make it open to the public. My main site is at <a href="https://stab.ing/">stab.ing</a>
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<p>
|
||||||
|
RedGarden is a host of many foss apps such as: <br>
|
||||||
|
- <a href="https://searx.redgarden.cv">Searxng</a> <br>
|
||||||
|
- <a href="https://omni.redgarden.cv">OmniSearch</a> <br>
|
||||||
|
- <a href="https://4get.redgarden.cv">4get</a> <br>
|
||||||
|
- <a href="https://mc.redgarden.cv">Drasel (Minecraft auth server)</a> <br>
|
||||||
|
- More to come... Msg me on xmpp at stab@stab.ing or email me at stab@stab.ing if u got suggestions.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<p>
|
||||||
|
<strong>Should you trust RedGarden?</strong> <br>
|
||||||
|
RedGarden takes NO logs all of the code ran on RedGarden is by public Foss projects. And in no way are any of these projects modified.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<p>
|
||||||
|
<strong>RULES!</strong> <br>
|
||||||
|
- dont break law. <br>
|
||||||
|
- No bots nor abuse of services.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
<p>
|
||||||
|
<strong>DONATE!</strong> <br>
|
||||||
|
I host everything off of my own wallet. <br>
|
||||||
|
Itd be pretty cool if you lifted some of that cost, either way Ill pay for it. <br>
|
||||||
|
- XMR : <br>
|
||||||
|
<code>89abYakWe3sYCCuek3N8QsLjHoxRfYXvqd9bHcoyWk2H8w4SaMDxf5bJyTUrnYxBkmPgqXqgECBD6BKecDAkirixDL3e6ur</code>
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
:root {
|
||||||
|
--bg: #1f1c1e;
|
||||||
|
--panel: #2b2528;
|
||||||
|
--panel-strong: #241f22;
|
||||||
|
--text: #e0d6da;
|
||||||
|
--text-strong: #ffffff;
|
||||||
|
--accent: #e06b7d;
|
||||||
|
--ok: #9bd3a8;
|
||||||
|
--down: #e07a7a;
|
||||||
|
--pending: #d6b37a;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background: var(--bg);
|
||||||
|
font-family: monospace;
|
||||||
|
color: var(--text);
|
||||||
|
line-height: 1.6;
|
||||||
|
min-height: 100vh;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page {
|
||||||
|
width: 95%;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
background: var(--panel);
|
||||||
|
padding: 60px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border-left: 1px solid var(--border);
|
||||||
|
border-right: 1px solid var(--border);
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 { color: var(--accent); margin: 0; text-transform: lowercase; }
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--text-strong);
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-color: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover { background: var(--accent); color: var(--text-strong); text-decoration: none; }
|
||||||
|
|
||||||
|
p { margin-bottom: 20px; font-size: 1.1rem; }
|
||||||
|
|
||||||
|
strong { color: var(--accent); }
|
||||||
|
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
.page {
|
||||||
|
padding: 28px 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 16 KiB |
Reference in New Issue
Block a user