Compare commits
2
Commits
c95a2a4806
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1c401b3efa | ||
|
|
96dc912c6c |
@@ -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
@@ -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
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user