-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (81 loc) · 2.29 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<title>FALTRO</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:site_name" content="FALTRO" />
<meta property="og:title" content="FALTRO" />
<meta property="og:url" content="https://faltro.com" />
<meta property="og:type" content="article" />
<meta
property="og:image"
content="https://faltro.com/img/faltro_heading.svg"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/hack-font@3/build/web/hack-subset.css"
/>
<style type="text/css">
:root {
--foreground-color: #ccc;
--background-color: #030303;
}
body {
font-family: "Hack", "monospace";
font-weight: 400;
font-size: large;
line-height: 1.3;
color: var(--foreground-color);
margin: 0;
background-color: var(--background-color);
}
.container {
position: absolute;
top: 50%;
left: 50%;
margin-right: -30%;
transform: translate(-50%, -50%);
}
@media (min-width: 652px) {
.container {
max-width: 652px;
}
}
a {
color: inherit;
text-decoration: none;
border-bottom: 0.5px var(--foreground-color) solid;
}
a:hover {
background-color: var(--foreground-color);
color: var(--background-color);
border: none;
}
</style>
</head>
<body>
<div class="container">
<p>FALTRO</p>
<p>
[<a href="https://github.com/xgi">github/xgi</a>,
<a href="mailto:[email protected]">[email protected]</a>]
</p>
<p>
Houdoku [<a href="https://houdoku.org">website</a>,
<a href="https://github.com/xgi/houdoku">github</a>]<br /> a
manga reader and library manager
</p>
<p>
Castero [<a href="https://github.com/xgi/castero">github</a
>]<br /> a podcast client for the terminal
</p>
<p>
AKAT [<a href="https://akat.netlify.app">website</a>,
<a href="https://github.com/xgi/akat">github</a>]<br /> a
search tool for regional movie titles
</p>
<p>GOODBYE</p>
</div>
</body>
</html>