abtmtr-v4/views/index.html

139 lines
3.7 KiB
HTML
Raw Normal View History

2023-11-23 08:53:28 +00:00
<!DOCTYPE html>
2023-11-26 06:55:00 +00:00
<html lang="en">
2023-11-23 08:53:28 +00:00
<head>
<meta charset="utf-8" />
2023-12-01 04:48:59 +00:00
<title>abtmtr.link</title>
2023-11-23 08:53:28 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/styles/normal.css" />
<link rel="stylesheet" href="/styles/windows.css" />
2023-11-23 08:53:28 +00:00
<link rel="stylesheet" href="/styles/style.css" />
2024-01-23 21:04:38 +00:00
<link rel="stylesheet" href="./styles/buttonroll.css" />
2023-11-23 08:53:28 +00:00
<style>
2024-01-23 21:04:38 +00:00
.header {
width: 100%;
aspect-ratio: 3 / 1;
background: url("/assets/bg.jpg");
background-position: center;
background-size: cover;
2024-01-30 17:23:45 +00:00
background-attachment: fixed;
2024-01-23 21:04:38 +00:00
text-align: center;
color: white;
text-shadow: 0 0.1em 0.5em black;
box-shadow: 0 0 1em var(--accent-color);
font-size: 1.5em;
border-radius: 2rem;
overflow: hidden;
display: grid;
align-items: center;
justify-content: center;
margin: 0.5em 0;
margin-bottom: 1em;
user-select: none;
}
.header h1 {
line-height: 1em;
margin-bottom: 0.35em;
border: none;
padding: 0;
}
.horizontal {
display: grid;
grid-auto-flow: column;
gap: 1em;
2023-11-23 08:53:28 +00:00
}
2024-01-25 04:49:29 +00:00
@keyframes wave {
0% {
transform: rotate(0deg);
}
20% {
transform: rotate(-15deg);
}
40% {
transform: rotate(15deg);
}
60% {
transform: rotate(-15deg);
}
80% {
transform: rotate(15deg);
}
100% {
transform: rotate(0deg);
}
}
.waving {
transform-origin: 60% 60%;
cursor: none;
}
.waving:hover {
animation: infinite wave 0.5s;
}
2023-11-23 08:53:28 +00:00
</style>
</head>
<body>
<header>
2024-01-23 21:04:38 +00:00
<section class="header" title="Image attribution: Celeste">
<div>
<small>⸻ welcome to ⸻</small>
<h1>ABTMTR.LINK</h1>
</div>
2023-11-23 08:53:28 +00:00
</section>
<$ nav.html $>
2023-11-27 00:58:46 +00:00
<section id="accessibility" hidden></section>
2024-01-23 21:04:38 +00:00
<div id="buttonroll" hidden></div>
2023-11-23 08:53:28 +00:00
</header>
<main>
<section>
2024-01-23 21:04:38 +00:00
<h1>
Hey!
2024-01-25 04:49:29 +00:00
<span class="rs waving">👋</span>
2024-01-23 21:04:38 +00:00
</h1>
<section id="data_whoami">
<p>
I'm...
<small
><a href="https://pronouns.cc/@MeowcaTheoRange" target="_blank"
>not loading</a
>.</small
>
</p>
</section>
2023-11-23 08:53:28 +00:00
<p>
I'm a web developer, Fediverse enthusiast, and compulsory Minnesotan.
</p>
<p>I run this domain and all of the services on it!</p>
<p id="no-fetchy" style="display: none">
For me, it is <b id="time">12:00 PM</b> on a
<b id="weekday">Sunday</b>. <b id="timezone">(UTC-0)</b><br />
<small
>data locally fetched from
<a href="https://pronouns.cc/@MeowcaTheoRange" target="_blank"
>pronouns.cc</a
></small
>
</p>
2024-01-23 21:04:38 +00:00
<button id="buttonflags" disabled>Cool Flags</button>
</section>
<section class="horizontal">
<section id="status"></section>
<section id="about"></section>
2023-11-23 08:53:28 +00:00
</section>
2023-11-26 20:25:54 +00:00
<section id="fields"></section>
2023-11-23 08:53:28 +00:00
</main>
<div id="WindowHolder"></div>
2023-11-23 08:53:28 +00:00
<script src="/scripts/windows.js"></script>
<script src="/scripts/accessibility.js"></script>
<script src="./scripts/data_get_whoami.js"></script>
2024-01-23 21:04:38 +00:00
<script src="./scripts/roll_buttons.js"></script>
2023-12-07 16:34:09 +00:00
<script src="/projects/item/hex/scripts/index.js"></script>
<script>
window.manager = new WindowManager(
document.getElementById("WindowHolder")
);
</script>
2023-11-23 08:53:28 +00:00
</body>
</html>