Stabosas lovely world
@@ -0,0 +1,3 @@
|
||||
<p>This page wasnt found on the server or an error has occured please return home</p>
|
||||
|
||||
<p>:.(</p>
|
||||
@@ -0,0 +1,69 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>stab.ing</title>
|
||||
<link rel="stylesheet" href="/static/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<h1>HELLO!</h1> <br>
|
||||
<a href="https://www.freebsd.org/" class="banners"><img src="/static/freebsd-banner.gif"></a>
|
||||
<a href="https://artixlinux.org/" class="banners"><img src="/static/artixlinux-banner.gif"></a>
|
||||
<a href="https://spyware.neocities.org/articles/discord" class="banners"><img src="/static/discord-no-way-banner.gif"></a>
|
||||
<a href="https://archive.org/" class="banners"><img src="/static/archive-banner.png"></a>
|
||||
<a href="https://vscodium.com/" class="banners"><img src="/static/vscodium-banner.gif"></a>
|
||||
<a href="https://stab.ing/" class="banners"><img src="/static/stab-banner.gif"></a>
|
||||
<a href="https://gizmodic.software/" class="banners"><img src="/static/gizmodic-banner.png"></a>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<p>Welcome to stab.ing. Owner of red garden, makan co.</p>
|
||||
<p>I love opensource software. My favorite programming languages consist of</p>
|
||||
<p>Go, C, Java, Nim, Python, Vlang </p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h3>Projects</h3>
|
||||
<p>I do Minecraft mod dev among other things. You can check my work here:</p>
|
||||
<ul>
|
||||
<li><a href="https://www.curseforge.com/members/stabosa87/projects">CurseForge Projects</a></li>
|
||||
<li><a href="https://git.stab.ing/stabosa87">Gitea (fuck github they shadow banned me)</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h3>My stuff</h3>
|
||||
<div class="links">
|
||||
<a href="https://redgarden.cv">-> Redgarden</a>
|
||||
<a href="https://files.stab.ing/">-> My files! (tunneled) (Copyparty)</a>
|
||||
</div>
|
||||
<h3>My other stuff</h3>
|
||||
<div class="links">
|
||||
<a href="https://iplookup.stab.ing/">-> Ip lookup (tunneled)</a>
|
||||
<a href="https://makanbot.stab.ing/">-> Makanbot (tunneled)</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h3>Contact</h3>
|
||||
<p>
|
||||
XMPP: stab@redgarden.cv<br>
|
||||
Email: <a href="mailto:stab@stab.ing">stab@stab.ing</a><br>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h3>Donate</h3>
|
||||
<p>
|
||||
XMR: 89abYakWe3sYCCuek3N8QsLjHoxRfYXvqd9bHcoyWk2H8w4SaMDxf5bJyTUrnYxBkmPgqXqgECBD6BKecDAkirixDL3e6ur<br>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<p class="foot">Note: Some of my personal sites are tunneled through cloudflare (this isnt!) BUT stuff like omnisearch and my xmpp are on a vps.</p>
|
||||
<p class="foot">Another Note: I have a discord account but rarely used nowadays. "stabosa87."</p>
|
||||
|
||||
<img src="/static/maka.png" alt="maka" class="dacat">
|
||||
</body>
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 999 B |
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,74 @@
|
||||
:root {
|
||||
--bg: #000;
|
||||
--text: #fff;
|
||||
--accent: #555555;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--bg);
|
||||
color: var(--text);
|
||||
font-family: "Noto Sans Mono", monospace;
|
||||
line-height: 1.6;
|
||||
max-width: 650px;
|
||||
margin: 40px auto;
|
||||
padding: 0 20px;
|
||||
padding-bottom: 120px;
|
||||
overflow-wrap: break-word;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.2rem;
|
||||
display: inline-block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.motd {
|
||||
font-style: italic;
|
||||
color: var(--accent);
|
||||
margin-bottom: 30px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--text);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.banners:hover {
|
||||
color: var(--text);
|
||||
background: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
background: var(--text);
|
||||
color: var(--bg);
|
||||
}
|
||||
|
||||
section {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.links {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.foot {
|
||||
font-size: 0.8rem;
|
||||
margin-top: 50px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.dacat {
|
||||
max-width: 100px;
|
||||
z-index: 100;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
.dacat {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 997 B |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.3 KiB |