-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (72 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>PIL | The Hunt '24</title>
<link rel="icon" type="image/x-icon" href="/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<script src="index.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: "#068F12",
secondary: "#F38F03",
},
screens: {
phone: "426px",
},
},
},
};
</script>
<style>
.my-element {
height: 100dvh;
}
@font-face {
font-family: myFirstFont;
src: url("unifont.otf");
}
div {
font-family: myFirstFont;
}
</style>
</head>
<body>
<div
class="flex my-element phone:h-auto phone:min-h-screen bg-[#001118] flex-col items-center justify-start phone:gap-14 p-2 phone:justify-between phone:gap-0 phone:p-20"
>
<div
class="text-center text-2xl font-extrabold mt-20 phone:mt-0 text-primary phone:text-4xl sm:text-5xl md:text-6xl"
>
PES Innovation Lab
<p
class="text-2xl text-white opacity-70 sm:text-3xl md:text-4xl"
>
Presents
</p>
</div>
<div
class="phone:text-5xl font-bold text-4xl lg:text-9xl md:text-8xl sm:text-7xl text-secondary mt-8 phone:mt-12"
>
The Hunt '24
</div>
<div
class="text-secondary text-center text-3xl mt-auto mb-10 phone:mb-0"
>
<p class="text-2xl phone:text-4xl mb-2">Loading...</p>
<div
id="countdown"
class="text-secondary text-3xl phone:text-5xl border border-secondary p-2"
>
<span id="days"></span> : <span id="hours"></span> :
<span id="minutes"></span> :
<span id="seconds"></span>
</div>
</div>
</div>
</body>
</html>