Compare commits

..
2 Commits
Author SHA1 Message Date
futile 1c401b3efa custom cursors 2026-07-26 03:45:52 +01:00
futile 96dc912c6c small fixes 2026-07-26 03:25:09 +01:00
5 changed files with 14 additions and 10 deletions
+6 -2
View File
@@ -2,6 +2,10 @@
yeah that's me
## deploy
### deploy
`npx wrangler pages deploy .` i guess
`npx wrangler pages deploy .`
### todo
- [ ] figure out what the hell is going on with the gothic font
Binary file not shown.

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 651 B

+2 -2
View File
@@ -10,9 +10,9 @@
<link rel="stylesheet" href="style/style.css" />
</head>
<body class="flex justify-center items-center overflow-hidden bg-black">
<body class="flex justify-center items-center overflow-hidden">
<div class="flex flex-col items-center max-w-lg">
<h1 class="leading-none select-none text-white header" onclick="window.location.href = 'mailto:me@futile.eu'">
<h1 class="leading-none select-none text-white" onclick="window.location.href = 'mailto:me@futile.eu'">
futile
</h1>
</div>
+6 -6
View File
@@ -1,10 +1,14 @@
body {
margin: 8px;
min-height: 100dvh;
background-color: black;
color: white;
cursor: url("../assets/cursor_black.png"), auto;
}
h1 {
font-family: Pirata One;
font-size: clamp(1em, 12em, 40vw);
font-family: "Pirata One";
font-size: min(40vw, 12em);
font-weight: 600;
@supports not (-moz-appearance: none) {
font-weight: 400;
@@ -30,8 +34,4 @@ p {
.max-w-lg { max-width: 32rem }
.select-none { user-select: none; }
.bg-black { background-color: black; }
.text-white { color: white; }
/* tailwind lite */