Skip to content

Commit 90ec580

Browse files
committed
revamp
1 parent 6eeab8c commit 90ec580

2 files changed

Lines changed: 86 additions & 0 deletions

File tree

.nojekyll

Whitespace-only changes.

index.html

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>WIP</title>
7+
<style>
8+
body {
9+
font-family: monospace;
10+
display: flex;
11+
flex-direction: column;
12+
justify-content: center;
13+
align-items: center;
14+
min-height: 100vh;
15+
margin: 0;
16+
text-align: center;
17+
}
18+
a {
19+
color: inherit;
20+
text-decoration: none;
21+
}
22+
a:hover {
23+
text-decoration: underline;
24+
}
25+
.github-link {
26+
margin-top: 20px;
27+
display: flex;
28+
align-items: center;
29+
justify-content: center;
30+
gap: 8px;
31+
}
32+
.loading::after {
33+
content: "...";
34+
animation: dots 1.5s steps(3, end) infinite;
35+
display: inline-block;
36+
width: 1.5em;
37+
}
38+
@keyframes dots {
39+
0%,
40+
25% {
41+
content: ".";
42+
}
43+
26%,
44+
50% {
45+
content: "..";
46+
}
47+
51%,
48+
100% {
49+
content: "...";
50+
}
51+
}
52+
</style>
53+
</head>
54+
<body>
55+
<div>
56+
<h1>working on something neat atm</h1>
57+
<p>
58+
Contact me at [&nbsp;<a id="email" href="" class="loading"></a
59+
>&nbsp;]
60+
</p>
61+
<div class="github-link">
62+
<svg
63+
width="24"
64+
height="24"
65+
viewBox="0 0 16 16"
66+
fill="currentColor"
67+
>
68+
<path
69+
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"
70+
/>
71+
</svg>
72+
<a href="https://github.com/thomastu">github.com/thomastu</a>
73+
</div>
74+
</div>
75+
<script>
76+
const e = "dGhvbWFzdHVAaGV5LmNvbQ==";
77+
setTimeout(() => {
78+
const email = atob(e);
79+
const emailLink = document.getElementById("email");
80+
emailLink.classList.remove("loading");
81+
emailLink.textContent = email;
82+
emailLink.href = "mailto:" + email;
83+
}, 2000);
84+
</script>
85+
</body>
86+
</html>

0 commit comments

Comments
 (0)