prepare for greatness
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+8
-2
@@ -1,15 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>futile</title>
|
||||
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml" />
|
||||
<link rel="stylesheet" href="style/reset.css" />
|
||||
<link rel="stylesheet" href="style/fonts.css" />
|
||||
<link rel="stylesheet" href="style/style.css" />
|
||||
</head>
|
||||
<body class="body">
|
||||
<h1 class="header" onclick="window.location.href = 'mailto:me@futile.eu'">
|
||||
|
||||
<body class="flex justify-center items-center overflow-hidden bg-black">
|
||||
<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'">
|
||||
futile
|
||||
</h1>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
@font-face {
|
||||
font-family: "Pirata One";
|
||||
src: url("../assets/Pirata One.woff2") format("woff2");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Iosevka";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url("../assets/Iosevka-Regular-subset.woff2") format("woff2");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Iosevka";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url("../assets/Iosevka-Bold-subset.woff2") format("woff2");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Iosevka";
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: url("../assets/Iosevka-Italic-subset.woff2") format("woff2");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Iosevka";
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: url("../assets/Iosevka-BoldItalic-subset.woff2") format("woff2");
|
||||
}
|
||||
+29
-21
@@ -1,29 +1,37 @@
|
||||
@font-face {
|
||||
font-family: "Pirata One";
|
||||
src: url("../assets/Pirata One.woff2") format("woff2");
|
||||
body {
|
||||
min-height: 100dvh;
|
||||
}
|
||||
|
||||
.body {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.header {
|
||||
font-weight: 600;
|
||||
h1 {
|
||||
font-family: Pirata One;
|
||||
font-size: clamp(1em, 12em, 40vw);
|
||||
user-select: none;
|
||||
line-height: 1;
|
||||
overflow: hidden;
|
||||
color: white;
|
||||
}
|
||||
|
||||
font-weight: 600;
|
||||
@supports not (-moz-appearance: none) {
|
||||
.header {
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-family: "Iosevka";
|
||||
}
|
||||
|
||||
/* tailwind lite */
|
||||
.flex { display: flex; }
|
||||
.flex-col { flex-direction: column; }
|
||||
|
||||
.justify-center { justify-content: center; }
|
||||
|
||||
.items-center { align-items: center; }
|
||||
|
||||
.overflow-hidden { overflow: hidden; }
|
||||
|
||||
.leading-none { line-height: 1; }
|
||||
|
||||
.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