-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.63 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Xenotech Apps</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
background: #0e0e12; color: #f0f0f2;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
display: flex; flex-direction: column; align-items: center; justify-content: center;
padding: 48px 24px;
}
h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; color: #818cf8; }
p { color: #888896; font-size: 15px; margin-bottom: 48px; }
.apps { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 360px; }
.app {
background: #1a1a20; border: 1px solid #1e1e26; border-radius: 12px;
padding: 18px 22px; text-decoration: none; color: #f0f0f2;
display: flex; align-items: center; justify-content: space-between;
transition: border-color 0.15s;
}
.app:hover { border-color: #6366f1; }
.app-name { font-size: 16px; font-weight: 700; }
.app-sub { font-size: 13px; color: #888896; margin-top: 2px; }
.arrow { color: #888896; font-size: 18px; }
</style>
</head>
<body>
<h1>Xenotech</h1>
<p>Apps by Michael Sollami</p>
<div class="apps">
<a class="app" href="/tapscribe/">
<div>
<div class="app-name">Tapscribe</div>
<div class="app-sub">Tap a rhythm. Get notation.</div>
</div>
<span class="arrow">›</span>
</a>
</div>
</body>
</html>