add files

This commit is contained in:
Gecko :3 2025-08-21 15:52:25 +02:00
commit d2c34fe273
10 changed files with 236 additions and 0 deletions

45
contact/index.html Normal file
View file

@ -0,0 +1,45 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Contact</title>
<link rel="stylesheet" href="../style.css" />
</head>
<body>
<div class="wrap">
<header>
<nav>
<a href="../index.html">home</a> |
<a href="../links/index.html">links</a> |
<a href="../uses/index.html">uses</a> |
<a href="../contact/index.html">contact</a>
</nav>
<hr class="rule" />
</header>
<main>
<h2>Contact me</h2>
<h2>Mastodon</h2>
<ul>
<li><a href="https://chaos.social/@probablygecko">chaos.social/@probablygecko</a></li>
</ul>
<hr class="rule" />
<h2>Signal</h2>
<ul>
<li>@gecko.82</li>
</ul>
<hr class="rule" />
<h2>Discord</h2>
<ul>
<li>@gecko_24</li>
</ul>
</main>
<footer>
</footer>
</div>
</body>
</html>

BIN
files/archlinux.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 B

BIN
files/coreboot.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

BIN
files/legalize.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

BIN
files/linuxnow.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

BIN
files/paws.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

36
index.html Normal file
View file

@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>about me</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="wrap">
<header>
<h1>hi, i'm Gecko :3</h1>
<h2>electronics student, interested in hardware hacking</h2>
<nav>
<a href="index.html">home</a> |
<a href="links/index.html">links</a> |
<a href="uses/index.html">uses</a> |
<a href="contact/index.html">contact</a>
</nav>
<hr class="rule" />
</header>
<main>
<p>advocate for privacy, free expression and free software. I like exploring lost places, rooftops and nature.</p>
</main>
<footer>
<hr class="rule" />
<img src="files/legalize.gif" width="88" height="31" alt="Legalize Weed" />
<a href="https://coreboot.org"><img src="files/coreboot.gif" width="88" height="31" alt="Coreboot" /></a>
<img src="files/linuxnow.jpg" width="88" height="31" alt="Linux" />
<a href=https://archlinux.org><img src="files/archlinux.png" width="88" height="31" alt="Arch Linux" /></a>
</footer>
</div>
</body>
</html>

38
links/index.html Normal file
View file

@ -0,0 +1,38 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Links</title>
<link rel="stylesheet" href="../style.css" />
</head>
<body>
<div class="wrap">
<header>
<nav>
<a href="../index.html">home</a> |
<a href="../links/index.html">links</a> |
<a href="../uses/index.html">uses</a> |
<a href="../contact/index.html">contact</a>
</nav>
<hr class="rule" />
</header>
<main>
<h2>Services currently hosted by me</h2>
<ul>
<li><a href="https://status.notagecko.dev/status/services" target="_blank">Status (Uptime Kuma)</a></li>
<li><a href="https://vault.notagecko.dev" target="_blank">Vaultwarden</a></li>
<li><a href="https://git.notagecko.dev" target="_blank">Forgejo</a></li>
<li><a href="https://jellyfin.notagecko.dev" target="_blank">Jellyfin</a></li>
<li><a href="https://cloud.notagecko.dev" target="_blank">Nextcloud</a></li>
</ul>
</main>
<footer>
</footer>
</div>
</body>
</html>

80
style.css Normal file
View file

@ -0,0 +1,80 @@
body {
margin: 0;
padding: 0;
background: #111;
color: #e6e6e6;
font: 16px/1.5 monospace;
}
.wrap {
max-width: 760px;
margin: 0 auto;
padding: 28px 16px 64px;
}
header { margin-bottom: 20px; }
nav {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
nav a {
color: #9b9b9b;
text-decoration: none;
border-bottom: 1px dashed transparent;
}
nav a:hover {
color: #e6e6e6;
border-color: #e6e6e6;
}
hr {
border: none;
border-top: 1px dashed #2a2a2a;
margin: 14px 0 24px;
}
h1, h2 {
margin: 0 0 8px 0;
font-weight: bold;
}
h1 { font-size: 1.6rem; }
h2 { font-size: 1.05rem; color: #9b9b9b; }
p { margin: 0 0 10px 0; }
a { color: inherit; text-decoration: underline; }
ul { margin: 8px 0 0 0; padding-left: 18px; }
li { margin: 4px 0; }
.box {
border: 1px dashed #2a2a2a;
padding: 12px;
margin-top: 10px;
}
footer {
margin-top: 40px;
color: #9b9b9b;
font-size: .9rem;
}
.tiny {
color: #9b9b9b;
font-size: .9rem;
}
.badge {
display: inline-block;
font-size: .78rem;
padding: 2px 6px;
border: 1px dashed #2a2a2a;
margin-left: 6px;
}
@media (max-width: 520px) {
.wrap { padding: 20px 14px 48px; }
}

37
uses/index.html Normal file
View file

@ -0,0 +1,37 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hardware</title>
<link rel="stylesheet" href="../style.css" />
</head>
<body>
<div class="wrap">
<header>
<nav>
<a href="../index.html">home</a> |
<a href="../links/index.html">links</a> |
<a href="../uses/index.html">uses</a> |
<a href="../contact/index.html">contact</a>
</nav>
<hr class="rule" />
</header>
<main>
<h2>Hardware currently used by me</h2>
<hr class="rule" />
<h2>Lenovo P14s Gen. 1</h2>
<ul>
<li>AMD Ryzen 7 PRO 4750U 8C16T</li>
<li>32+8 GB 2666MHz DDR4</li>
<li>512 GB NVME running Win11 and Arch</li>
</ul>
</main>
<footer>
</footer>
</div>
</body>
</html>