this is the site now

This commit is contained in:
2025-11-06 10:05:18 +00:00
parent f310821b31
commit 61a9d6cf80
4 changed files with 54 additions and 0 deletions
Binary file not shown.
+6
View File
@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-40 -40 80 80">
<circle r="39"/>
<path fill="#fff" d="M0,38a38,38 0 0 1 0,-76a19,19 0 0 1 0,38a19,19 0 0 0 0,38"/>
<circle r="5" cy="19" fill="#fff"/>
<circle r="5" cy="-19"/>
</svg>

After

Width:  |  Height:  |  Size: 239 B

+18
View File
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>futile</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml">
</head>
<body>
<div class="container">
<h1 class="title"><a class="title" href="mailto:me@futile.eu">futile</a></h1>
</div>
</body>
</html>
+30
View File
@@ -0,0 +1,30 @@
@font-face {
font-family: "Bokor";
src: url("assets/Bokor-Regular.woff2") format("woff2");
}
html,
body {
margin: 0;
background-color: black;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.title {
color: white;
text-decoration: none;
cursor: default;
font-family: "Bokor";
font-size: clamp(1em, 4em, 40vw);
/* because chromium renders this font like dogshit at weight 600 */
@supports not (-moz-appearance: none) {
font-weight: 400;
}
}