-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
43 lines (40 loc) · 2 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Reassurance Button</title>
<meta name="description" content="A button that reassures you everything is gonna be okay every time you press it.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/dist/output.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Manrope" rel="stylesheet">
<link rel="icon" type="image/png" href="/favicon.png">
</head>
<body>
<div class="p-4 w-full h-screen flex flex-col items-center justify-evenly bg-background text-text overflow-x-hidden relative">
<div class="h-64 w-64 rounded-lg absolute bg-secondary blur-5xl z-0 translate-x-40 -translate-y-24 animate-bloba">
</div>
<div class="h-64 w-64 rounded-lg absolute bg-secondary blur-5xl z-0 -translate-x-40 translate-y-24 animate-blobb">
</div>
<p class="text-base text-text font-medium font-body z-10">The Reassurance Button</p>
<h1 class="text-5xl font-bold font-heading text-center z-10 max-[800px]:text-2xl h-[10rem]">
<span class="animated-text inline-block transition-opacity duration-300 ease-out opacity-0">Things might be
overwhelming rn
</span>
</h1>
<p id="point-counter" class="text-5xl text-text font-medium font-body z-10 opacity-30">0</p>
<button class="rounded-lg h-16 w-48 bg-text text-background text-xl font-medium drop-shadow-lg font-body relative z-0"
onclick="addPoint(this)">
Reassure me!
</button>
<div class="flex flex-row align-middle gap-5">
<a href="https://twitter.com/Juxtopposed" target="_blank" class="text-base text-text font-medium font-body z-10 opacity-30 hover:opacity-100 transition-opacity">
By @Juxtopposed
</a>
<a href="https://github.com/juxtopposed/reassurance-button" target="_blank" class="text-base text-text font-medium font-body z-10 opacity-30 hover:opacity-100 transition-opacity">
GitHub
</a>
</div>
</div>
<script src="/index.js"></script>
</body>
</html>