This commit is contained in:
hexlocation 2025-01-02 22:06:49 +01:00
parent d91bd9d9e2
commit 3090a6c2f9
Signed by: hex
GPG key ID: A19EFFAAF8C00FCF
2 changed files with 129 additions and 145 deletions

61
global.css Normal file
View file

@ -0,0 +1,61 @@
@font-face {
font-family: heartFont;
src: url("ttf/rainyhearts.ttf");
}
@keyframes rainbow_anim {
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-content {
grid-area: a;
}
#additional-content {
grid-area: b;
}
#contact-content {
grid-area: c;
}
#nav-content {
grid-area: d;
}
#main-box {
display: grid;
grid-template-areas:
"a a a b"
"a a a c"
"a a a d";
}
body {
font-family: heartFont;
color: white;
font-weight: 800;
font-size: 23px;
background-color: #0f0f0f;
}

View file

@ -1,160 +1,83 @@
<html> <html>
<div id="flex-container"> <head>
<div id="main-flex"> <link rel="stylesheet" href="global.css"/>
<h1 style="text-align: center;">hello world</h1> </head>
<div id="main-box"> <div id="main-box">
<div class="main-content"> <div class="main-content">
<h3>whoami</h3> <h3>whoami</h3>
<p>I'm <b class="rainbow-text">hex</b>, short for hexlocation.</p> <p>I'm <b class="rainbow-text">hex</b>, short for hexlocation.</p>
<p>Student and FOSS enthusiast.</p> <p>Student and FOSS enthusiast.</p>
<p>Interested in</p> <p>Interested in</p>
<ul> <ul>
<li>Embedded devices & firmware development (Coreboot/Libreboot)</li> <li>Embedded devices & firmware development (Coreboot/Libreboot)</li>
<li>All things Linux</li> <li>All things Linux</li>
<li>ThinkPads (currently have: L14G2A, P50, T480 and soon a T440p)</li> <li>ThinkPads (currently have: L14G2A, P50, T480 and soon a T440p)</li>
<li>Internet & Software Freedom (foss)</li> <li>Internet & Software Freedom (foss)</li>
</ul> </ul>
<a href="hw.html">Click here to view my hardware.</a> <a href="hw.html">Click here to view my hardware.</a>
<p>P.S. I'm going to FOSDEM 2025 this year. You might meet me!</p> <p>P.S. I'm going to FOSDEM 2025 this year. You might meet me!</p>
</div> </div>
<div class="additional-content"> <div class="additional-content">
<h3>banners</h3> <h3>banners</h3>
<div id="banners"> <div id="banners">
<a href="https://archive.org"> <a href="https://archive.org">
<img src="img/ia.gif"></img> <img src="img/ia.gif"></img>
</a> </a>
<img src="img/hair.png"></img> <img src="img/hair.png"></img>
<img src="img/hand.webp"></img> <img src="img/hand.webp"></img>
<img src="img/fuckcss.png"></img> <img src="img/fuckcss.png"></img>
<a href="https://store.steampowered.com/app/2357910/Home_Safety_Hotline/"> <a href="https://store.steampowered.com/app/2357910/Home_Safety_Hotline/">
<img src="img/hsh.gif"></img> <img src="img/hsh.gif"></img>
</a> </a>
<a href="https://recaptcha.sucks/"> <a href="https://recaptcha.sucks/">
<img src="img/fuckgoogle.png"></img> <img src="img/fuckgoogle.png"></img>
</a> </a>
<a href=""> <a href="">
<img src="img/clickme.gif"></img> <img src="img/clickme.gif"></img>
</a> </a>
<a href="https://avitld.xyz/"> <a href="https://avitld.xyz/">
<img src="img/avitldv2.gif"></img> <img src="img/avitldv2.gif"></img>
</a> </a>
<a href="https://heroin.zone/"> <a href="https://heroin.zone/">
<img src="img/hz.gif"></img> <img src="img/hz.gif"></img>
</a> </a>
<a href="https://iwakura.rip/"> <a href="https://iwakura.rip/">
<img src="img/iwakura.gif"></img> <img src="img/iwakura.gif"></img>
</a> </a>
<a href="https://heroin.zone/~andre/"> <a href="https://heroin.zone/~andre/">
<img src="img/andre.png"></img> <img src="img/andre.png"></img>
</a> </a>
<img src="img/win10no.gif"></img> <img src="img/win10no.gif"></img>
<img src="img/fuckgoogle.gif"></img> <img src="img/fuckgoogle.gif"></img>
<a href="https://www.patrick-breyer.de/en/posts/chat-control/"> <a href="https://www.patrick-breyer.de/en/posts/chat-control/">
<img src="img/chatcontrol.gif"></img> <img src="img/chatcontrol.gif"></img>
</a> </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> </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>
</html> </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>