myco.systems/public/@brooke/index.html

189 lines
5.6 KiB
HTML
Raw Normal View History

2024-08-09 01:39:53 -04:00
<!doctype html>
<html lang="en">
2024-08-09 01:39:53 -04:00
<head>
2024-08-09 18:10:00 -04:00
<a rel="me" href="https://kolektiva.social/@brooke"></a>
2024-08-09 01:39:53 -04:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@Brooke</title>
<style>
@font-face {
2024-08-10 00:31:45 -04:00
font-family: PixelifySans;
font-weight: 700;
2024-08-09 13:53:01 -04:00
src: url(/@brooke/font/static/PixelifySans-Regular.ttf)
2024-08-09 01:39:53 -04:00
format("truetype");
font-display: swap;
2024-08-09 01:39:53 -04:00
}
:root {
--background: #242424e5;
--accent-1: #d182ff;
2024-08-09 17:33:55 -04:00
--background-img: url("/@brooke/bg.webp");
2024-08-10 14:28:06 -04:00
--banner-top: url("/@brooke/fractal-top.webp");
--banner-bottom: url("/@brooke/fractal-bottom.webp");
2024-08-09 01:39:53 -04:00
--text-color: white;
--link-color: var(--accent-1);
--border: 1px solid black;
}
body,
html {
margin: 0;
box-sizing: border-box;
2024-08-10 00:31:45 -04:00
font-family: PixelifySans;
2024-08-10 03:10:17 -04:00
height: 100%;
2024-08-09 01:39:53 -04:00
}
body {
background-image: var(--background-img);
color: var(--text-color);
background-attachment: fixed;
2024-08-09 13:40:36 -04:00
background-size: auto 300px;
2024-08-09 01:39:53 -04:00
}
2024-08-10 03:27:56 -04:00
.bar-bottom,
.bar-top {
2024-08-09 01:39:53 -04:00
height: 150px;
background-size: cover;
2024-08-09 01:39:53 -04:00
border: var(--border);
}
2024-08-10 03:27:56 -04:00
.bar-top {
background-image: var(--banner-top);
background-position: center bottom;
2024-08-10 03:27:56 -04:00
}
.bar-bottom {
background-image: var(--banner-bottom);
background-position: center top;
2024-08-10 03:27:56 -04:00
}
2024-08-09 01:39:53 -04:00
#container {
2024-08-10 03:10:17 -04:00
max-width: 750px;
2024-08-09 01:39:53 -04:00
margin: 0 auto;
2024-08-10 05:14:41 +00:00
border-top: none;
2024-08-10 03:10:17 -04:00
display: flex;
flex-direction: column;
2024-08-09 01:39:53 -04:00
}
#container a {
color: var(--link-color);
}
#flex {
display: flex;
2024-08-10 03:10:17 -04:00
flex: 1;
overflow: auto;
2024-08-09 01:39:53 -04:00
}
main {
width: 100%;
background-color: var(--background);
}
.content {
padding: 25px;
}
2024-08-10 13:48:41 -04:00
li {
2024-08-09 18:02:47 -04:00
padding: 0.25rem;
}
2024-08-10 11:53:36 -04:00
body {
display: flex;
align-items: center;
justify-content: center;
}
@media only screen and (max-width: 750px) {
main {
display: flex;
align-items: center;
justify-content: center;
overflow-wrap: break-word;
2024-08-10 11:53:36 -04:00
}
2024-08-10 05:14:41 +00:00
#container {
2024-08-10 03:10:17 -04:00
height: 100vh;
2024-08-10 05:16:55 +00:00
}
#flex {
2024-08-10 03:10:17 -04:00
flex-wrap: wrap;
}
}
2024-08-09 01:39:53 -04:00
</style>
</head>
<body>
<div id="container">
2024-08-10 03:27:56 -04:00
<div class="bar-top"></div>
2024-08-09 01:39:53 -04:00
<div id="flex">
<main>
<div style="padding: 1rem; padding-top: 0">
2024-08-10 13:48:41 -04:00
<p>Hi! My name is Brooke. I use She/They pronouns.</p>
2024-08-09 01:39:53 -04:00
<p>
2024-08-10 13:48:41 -04:00
I'm a 20-something trying to help organizations and individuals
get on board with the idea of using FLOSS (Free/Libre/Open Source
Software). I enjoy and am proficient with
<a href="https://ollama.ai">Ollama</a>,
2024-08-10 13:01:01 -04:00
<a href="https://gohugo.io">Hugo</a>,
<a href="https://www.debian.org/">Debian flavors of Linux</a>,
<a href="https://www.docker.com/">Docker</a>, and CI/CD, primarily
<a href="https://forgejo.org/docs/latest/user/actions/"
>Github/ACT</a
>.
2024-08-09 01:39:53 -04:00
</p>
2024-08-10 13:48:41 -04:00
<p>Online, I like to talk about:</p>
2024-08-09 01:39:53 -04:00
<ul>
<li>Off-grid living</li>
<li>Rubber Tramping</li>
<li>Open Source projects of all kinds</li>
<li>Intentional communities</li>
</ul>
<p>Where you can find me:</p>
2024-08-09 01:39:53 -04:00
<ul>
<a target="_blank" href="https://coop.myco.systems/">
<li>Blog</li>
</a>
<a target="_blank" href="https://kolektiva.social/@brooke/">
<li>Mastodon</li>
</a>
<a target="_blank" href="/@brooke/ssb">
<li>SSB</li>
</a>
2024-08-09 01:39:53 -04:00
</ul>
2024-08-09 17:11:28 -04:00
<p>
This website's layout is inspired by
<a target="_blank" href="https://goblin-heart.net/sadgrl/"
>sadgirl.online</a
>.<br />And, here's some tags for things I like:
</p>
2024-08-09 01:39:53 -04:00
<div>
<a target="_blank" href="https://10kb.neocities.org/about">
<img
loading="lazy"
2024-08-09 17:16:12 -04:00
src="/@brooke/flag10kb.webp"
2024-08-09 18:05:50 -04:00
height="32"
2024-08-09 17:16:54 -04:00
width="88"
2024-08-10 00:31:24 -04:00
alt="The words '10kB' split in half by a black cross, on a blue background."
2024-08-09 01:39:53 -04:00
/>
</a>
<img
loading="lazy"
2024-08-09 17:16:12 -04:00
src="/@brooke/trans.webp"
2024-08-09 18:05:27 -04:00
height="31"
2024-08-09 17:16:54 -04:00
width="88"
2024-08-09 18:07:08 -04:00
alt="The trans flag. A flag wih blue, pink, and white strips."
2024-08-09 01:39:53 -04:00
/>
<img
loading="lazy"
2024-08-09 17:58:47 -04:00
src="/@brooke/piracy.webp"
2024-08-09 18:05:27 -04:00
height="31"
2024-08-09 17:16:54 -04:00
width="88"
2024-08-09 18:07:08 -04:00
alt="Piracy Now! With a skull a crossed bones to the left."
2024-08-09 01:39:53 -04:00
/>
<img
loading="lazy"
2024-08-09 17:58:47 -04:00
src="/@brooke/acab.webp"
2024-08-09 18:05:27 -04:00
height="31"
2024-08-09 17:16:54 -04:00
width="88"
2024-08-09 18:07:08 -04:00
alt="All Cops Are Bastards. Flashing text pink and yellow."
2024-08-09 01:39:53 -04:00
/>
<a target="_blank" href="https://besties.house/"
><img
2024-08-10 00:31:24 -04:00
loading="lazy"
2024-08-09 17:58:47 -04:00
src="/@brooke/besties.webp"
2024-08-09 18:05:27 -04:00
height="31"
2024-08-09 17:16:54 -04:00
width="88"
2024-08-09 01:39:53 -04:00
alt="Besties.house, first unionised group chat."
/></a>
</div>
</div>
</main>
</div>
2024-08-10 03:27:56 -04:00
<div class="bar-bottom"></div>
2024-08-09 01:39:53 -04:00
</div>
</body>
</html>