website/index.html

121 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body { margin: 0; }
body > * {
box-sizing: border-box;
float: left;
padding: 4px;
}
#main {
position: absolute;
top: 0;
left: 192px;
width: calc(100% - 192px);
}
#nav {
width: 192px;
height: 100%;
background-color: #cccccc;
position: fixed;
top: 0;
left: 0;
}
.nav-item {
padding: 0px 4px 0px 4px;
margin: 2px;
background-color: #800000;
color: #ddd;
display: block;
}
.nav-item:hover {
background-color: #ffffff;
color: #800000;
}
.nav-section-bottom {
position: absolute;
bottom: 0;
}
@media only screen and (max-width: 576px) {
#main, #nav {
position: initial;
width: 100%;
}
#nav { height: initial; }
.nav-item { padding: 4px; }
.nav-section-bottom { display: none; }
}
</style>
<title>e3team</title>
</head>
<body>
<div id="nav">
<div class="nav-section">
<span>Navigation</span>
<a class="nav-item" href="/">About</a>
<a class="nav-item" href="/services.html">Services</a>
<a class="nav-item" href="/servers.html">Machines</a>
</div>
<div class="nav-section nav-section-bottom">
Free now and forever.
</div>
</div>
<div id="main">
<h1>hi, we're e3team</h1>
<p>we're a team/group of friends (mostly software developers) who believe
in a free (as in freedom) and decentralized internet</p>
<a href="mailto:all@e3t.cc">get in touch</a> or
<a href="https://git.e3t.cc">check out our stuff</a>
<h2>the team</h2>
<ul>
<li>
<b><a href="https://nishi.e3t.cc">nishi</a></b> is a NetBSD
enthusiast and accomplished C programmer
<blockquote>
gluten morgen - nishi 2022
</blockquote>
</li>
<li>
<b><a href="https://coredoes.dev">core</a></b> is a wannabe network
engineer and programmer of 9 years
<blockquote>
mobil key(br d - core 2022
</blockquote>
</li>
<li>
<b>dooms</b> is a quantum engineer and just likes to chat
<blockquote>
ghostly and ghostly and ghostly is a triple universe fault - dooms
2022
</blockquote>
</li>
<li>
<b>ghostly</b> is a linguist and game developer
<blockquote>
buffalo buffalo buffalo buffalo buffalo - ghost 2022
</blockquote>
</li>
<li>
<b><a href="https://u8.lc">terra</a></b> is a network engineer and old
laptop salvager
<blockquote>
thes truggl - terra 2023
</blockquote>
</li>
</ul>
</div>
</body>
</html>