159 lines
4.4 KiB
HTML
159 lines
4.4 KiB
HTML
<html>
|
|
<div id="flex-container">
|
|
<div id="main-flex">
|
|
<h1 style="text-align: center;">hello world</h1>
|
|
<div id="main-box">
|
|
<div class="main-content">
|
|
<h3>whoami</h3>
|
|
<p>I'm <b class="rainbow-text">hex</b>, short for hexlocation.</p>
|
|
<p>Student and FOSS enthusiast.</p>
|
|
<p>Interested in</p>
|
|
<ul>
|
|
<li>Embedded devices & firmware development (Coreboot/Libreboot)</li>
|
|
<li>All things Linux</li>
|
|
<li>ThinkPads (currently have: L14G2A, P50, T480 and soon a T440p)</li>
|
|
<li>Internet & Software Freedom (foss)</li>
|
|
</ul>
|
|
<p>P.S. I'm going to FOSDEM 2025 this year. You might meet me!</p>
|
|
</div>
|
|
<div class="additional-content">
|
|
<h3>banners</h3>
|
|
<div id="banners">
|
|
<a href="https://archive.org">
|
|
<img src="img/ia.gif"></img>
|
|
</a>
|
|
|
|
<img src="img/hair.png"></img>
|
|
<img src="img/hand.webp"></img>
|
|
<img src="img/fuckcss.png"></img>
|
|
|
|
<a href="https://store.steampowered.com/app/2357910/Home_Safety_Hotline/">
|
|
<img src="img/hsh.gif"></img>
|
|
</a>
|
|
|
|
<a href="https://recaptcha.sucks/">
|
|
<img src="img/fuckgoogle.png"></img>
|
|
</a>
|
|
|
|
<a href="">
|
|
<img src="img/clickme.gif"></img>
|
|
</a>
|
|
|
|
<a href="https://avitld.xyz/">
|
|
<img src="img/avitldv2.gif"></img>
|
|
</a>
|
|
|
|
<a href="https://heroin.zone/">
|
|
<img src="img/hz.gif"></img>
|
|
</a>
|
|
|
|
<a href="https://iwakura.rip/">
|
|
<img src="img/iwakura.gif"></img>
|
|
</a>
|
|
|
|
<a href="https://heroin.zone/~andre/">
|
|
<img src="img/andre.png"></img>
|
|
</a>
|
|
|
|
<img src="img/win10no.gif"></img>
|
|
<img src="img/fuckgoogle.gif"></img>
|
|
|
|
<a href="https://www.patrick-breyer.de/en/posts/chat-control/">
|
|
<img src="img/chatcontrol.gif"></img>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="contact-content">
|
|
<h3>contact</h3>
|
|
<p>e-mail & xmpp: hex[at]iwakura.rip<br>
|
|
discord: hex.maybe</p>
|
|
</div>
|
|
<div class="nav-content">
|
|
<h3>links</h3>
|
|
<a href="files/">
|
|
<img src="img/files.png"></img>
|
|
</a>
|
|
|
|
<a href="img/">
|
|
<img src="img/design.png"></img>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</html>
|
|
|
|
<style>
|
|
@font-face {
|
|
font-family: heartFont;
|
|
src: url("ttf/rainyhearts.ttf");
|
|
}
|
|
|
|
@keyframes rainbow_anim {
|
|
|
|
0%,
|
|
100% {
|
|
background-position: 0 0;
|
|
}
|
|
|
|
50% {
|
|
background-position: 100% 0;
|
|
}
|
|
}
|
|
|
|
@keyframes border_amim {
|
|
|
|
0%,
|
|
100% {
|
|
background-position: 0 0;
|
|
}
|
|
|
|
50% {
|
|
background-position: 100% 0;
|
|
}
|
|
}
|
|
|
|
img {
|
|
border: 1px solid white;
|
|
}
|
|
|
|
.rainbow-text {
|
|
text-align: center;
|
|
background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
|
|
background-clip: text;
|
|
color: transparent !important;
|
|
animation: rainbow_anim 15s ease-in-out infinite;
|
|
background-size: 400% 100%;
|
|
}
|
|
|
|
#main-box {
|
|
display: inline-grid;
|
|
grid-template-columns: 50vw 20vw;
|
|
grid-auto-flow: row;
|
|
grid-gap: 20px;
|
|
|
|
}
|
|
|
|
#main-flex {
|
|
padding: 30px;
|
|
border: 3px solid white;
|
|
border-radius: 10px;
|
|
box-shadow: 0px 0px 20px white;
|
|
color: white;
|
|
}
|
|
|
|
#flex-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: heartFont;
|
|
font-weight: 800;
|
|
font-size: 23px;
|
|
background-color: black;
|
|
}
|
|
</style>
|