Files
futile.eu/index.html
T

185 lines
5.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>« futile »</title>
<script> let FF_FOUC_FIX; </script>
<link rel="dns-prefetch" href="//incr.easrng.net">
<link rel="preload" href="//incr.easrng.net/bg.gif" as="image">
</head>
<style>
@import url(https://fonts.bunny.net/css?family=bokor:400|ibm-plex-mono:400);
body {
background-color: black;
color: white;
font-family: 'IBM Plex Mono', monospace;
}
p {
letter-spacing: -0.07em;
}
.box {
display: flex;
justify-content: center;
align-items: center;
max-width: 480px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box;
}
.main-title {
font-family: 'Bokor', serif;
font-size: 5em;
line-height: 1em;
margin-top: 0.2em;
margin-bottom: 0em;
user-select: none;
font-weight: normal;
}
/* hacky way of making my font look nicer on firefox
while having chrome's rendering of it not be bloated
*/
@supports (-moz-appearance: none) {
.main-title {
font-weight: bold;
}
}
.separator {
color: white;
margin-top: 0.5em;
margin-bottom: 0em;
width: 50px;
}
.content {
line-height: 1.3em;
}
.click {
color: white;
text-decoration: underline dotted;
}
.click:hover {
text-decoration: underline solid;
}
div.buttons {
display: flex;
justify-content: center;
align-items: center;
max-width: 480px;
margin: 0 auto;
padding: 0 20px;
position: relative;
bottom: 4px;
left: 0;
right: 0;
}
ul.buttons {
list-style-type: none;
margin: -8px;
padding: 0;
display: flex;
flex-wrap: wrap;
padding: 0 20px;
justify-content: center;
}
ul.buttons li {
/* margin-right: 3px; */
line-height: 0;
}
a {
color: white;
}
div.footer {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
height: 2.9em;
}
</style>
<!-- WARNING! this website contains javascript. proceed with caution. -->
<script>
const texts = [
"who are you",
"lorem ipsum dolor sit amet",
"hot garfields in your area",
"don't forget to drink water"
];
function setRandomText() {
document.querySelector('#quote').textContent = texts[Math.floor(Math.random() * texts.length)];
}
document.addEventListener('DOMContentLoaded', setRandomText);
</script>
<script>
const characters = ['◇', '◆'];
let currentIndex = 0;
function cycleText() {
document.querySelector('#thing').textContent = characters[currentIndex];
currentIndex = currentIndex === 0 ? 1 : 0;
}
document.addEventListener('DOMContentLoaded', () => {
cycleText();
setInterval(cycleText, 1000);
});
</script>
<body>
<div class="box">
<h1 class="main-title">futile</h1>
</div>
<hr class="separator">
<div class="box">
<p class="content">
hello, my name is futile. i am a weird concept from the internet (or a person from europe, depending on
who you ask).<br><br>
i like programming (mostly rust), computers, linux, malicious software like game hacks and
malware, and vehicles that drive or fly.<br><br>
if you want to contact me, email <a class="click" href="mailto:me@futile.eu">me@futile.eu</a>
</p>
</div>
<div style="position: absolute; bottom: 0; left: 0; right: 0;">
<div class="buttons">
<ul class="buttons">
<li><a href="https://futile.eu"><img src="buttons/futile.png" width="88px" height="31px" alt="by futile"></a></li>
<li><a href="https://xenia.blahaj.land/"><img src="buttons/rose_88x31.png" width="88px" height="31px" alt="by rose"></a></li>
<li><iframe src="//incr.easrng.net/badge?key=futile" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe></li>
<li><a href="https://fedoraproject.org/spins/kde"><img src="buttons/fedora.png" width="88px" height="31px" alt="by unknown; retouched by futile"></a></li>
<li><a href="https://mozilla.org/firefox"><img src="buttons/firefox4.gif" width="88px" height="31px" alt="by unknown"></a></li>
<li><a href="https://vscodium.com"><img src="buttons/vscodium.com.png" width="88px" height="31px" alt="by unknown"></a></li>
<li><img src="buttons/FirtniteButton.png" onclick="alert('firt night')" width="88px" height="31px" alt="by unknown"></li>
<li><a href="https://ublockorigin.com"><img src="buttons/ublock.png" width="88px" height="31px" alt="by unknown"></a></li>
<li><a href="https://rust-lang.org"><img src="buttons/rustNOW.png" width="88px" height="31px" alt="by futile"></a></li>
</ul>
</div>
<div class="footer">
<p id="quote">who are you</p>
&nbsp;
<p id="thing" style="user-select: none;"></p>
&nbsp;
<p><a class="click" target="_blank" href="https://codeberg.org/futile">codeberg</a></p>
</div>
</div>
</body>
</html>