-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (78 loc) · 4.07 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
83
84
85
86
87
88
89
90
91
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="./styles/jquery-ui.css">
<link rel="icon" type="image/x-icon" href="./images/favicon/favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Macondo+Swash+Caps&family=Playpen+Sans:wght@400&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
macondo: ['"Macondo Swash Caps"'],
playpen: ['"Playpen Sans"']
}
}
}
}
</script>
</head>
<body data-chapter="" class="w-full max-w-xl mx-auto px-4 mt-12">
<div class="flex flex-col items-center">
<div class="mt-2">
<img src="./images/cover.png" class="rounded-2xl" style="width:auto; height:300px;">
</div>
<div class="mt-8 text-center">
<h1 class="font-macondo text-4xl font-bold text-purple-600">
Bezos's Everlasting Odyssey
</h1>
</div>
<div class="mt-4 text-center">
<p class="font-playpen text-xl text-purple-500">
An ongoing tale that unfolds with each completed chapter,
releasing endless adventures from time to time.
</p>
</div>
<div class="mt-8">
<button data-chapter="004" class="chapterBtn relative inline-flex items-center justify-center p-0.5 mb-2 mr-2 overflow-hidden text-xl font-medium text-purple-500 rounded-lg group bg-gradient-to-br from-purple-500 to-pink-500 group-hover:from-purple-500 group-hover:to-pink-500 hover:text-white focus:ring-4 focus:outline-none focus:ring-purple-200">
<span id="chapterBtnText004" class="font-playpen relative px-5 py-2.5 transition-all ease-in duration-75 bg-white rounded-md group-hover:bg-opacity-0">
Chapter 4
</span>
</button>
</div>
<div class="mt-4">
<button data-chapter="003" class="chapterBtn relative inline-flex items-center justify-center p-0.5 mb-2 mr-2 overflow-hidden text-xl font-medium text-purple-500 rounded-lg group bg-gradient-to-br from-purple-500 to-pink-500 group-hover:from-purple-500 group-hover:to-pink-500 hover:text-white focus:ring-4 focus:outline-none focus:ring-purple-200">
<span id="chapterBtnText003" class="font-playpen relative px-5 py-2.5 transition-all ease-in duration-75 bg-white rounded-md group-hover:bg-opacity-0">
Chapter 3
</span>
</button>
</div>
<div class="mt-4">
<button data-chapter="002" class="chapterBtn relative inline-flex items-center justify-center p-0.5 mb-2 mr-2 overflow-hidden text-xl font-medium text-purple-500 rounded-lg group bg-gradient-to-br from-purple-500 to-pink-500 group-hover:from-purple-500 group-hover:to-pink-500 hover:text-white focus:ring-4 focus:outline-none focus:ring-purple-200">
<span id="chapterBtnText002" class="font-playpen relative px-5 py-2.5 transition-all ease-in duration-75 bg-white rounded-md group-hover:bg-opacity-0">
Chapter 2
</span>
</button>
</div>
<div class="mt-4 mb-12">
<button data-chapter="001" class="chapterBtn relative inline-flex items-center justify-center p-0.5 mb-2 mr-2 overflow-hidden text-xl font-medium text-purple-500 rounded-lg group bg-gradient-to-br from-purple-500 to-pink-500 group-hover:from-purple-500 group-hover:to-pink-500 hover:text-white focus:ring-4 focus:outline-none focus:ring-purple-200">
<span id="chapterBtnText001" class="font-playpen relative px-5 py-2.5 transition-all ease-in duration-75 bg-white rounded-md group-hover:bg-opacity-0">
Chapter 1
</span>
</button>
</div>
<div class="mt-4"><br /></div>
</div>
<!-- JAVASCRIPT LIBRARIES -->
<!--################################################################################################-->
<script src="./javascripts/703d3fa260.js"></script>
<script src="./javascripts/jquery.min.js"></script>
<script src="./javascripts/jquery-ui.min.js"></script>
<script src="./javascripts/general.js"></script>
</body>
</html>