-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.html
82 lines (74 loc) · 4.82 KB
/
credits.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
<!DOCTYPE html>
<html lang="en" class="w-full min-h-screen">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Gotta Drink'em All!">
<link rel="shortcut icon" href="./assets/images/Ph-Favicon-square.png" type="image/x-icon">
<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=Jersey+10&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Rubik+Mono+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/CSS/style.css">
<link rel="stylesheet" href="./assets/CSS/select.css">
<link rel="stylesheet" href="./assets/CSS/credits.css">
<script defer src="https://kit.fontawesome.com/fef0315d16.js" crossorigin="anonymous"></script>
<script defer src="https://cdn.tailwindcss.com"></script>
<script defer src="./assets/js/logic.js"></script>
<script defer src="./assets/js/credits.js"></script>
<script defer src="./assets/js/select.js"></script>
<title>Credits</title>
</head>
<body class="flex flex-col justify-between relative overflow-x-hidden">
<div class="front-bg-filter z-0"></div>
<header class="w-full h-1/6 flex flex-row justify-center items-start relative z-20">
<div class="brand-bg absolute h-1/2 w-full top-0 z-0"></div>
<div class="font-brand-title color-brand title-brand flex flex-row flex-nowrap justify-start header-div z-10 h-5/6 md:pl-16 pl-2 mr-auto">
<h1 class="letter front" data-rotation="-.2">C</h1>
<h1 class="letter back" data-rotation="-.1">R</h1>
<h1 class="letter middle" data-rotation="-.05">E</h1>
<h1 class="letter front" data-rotation=".05">D</h1>
<h1 class="letter middle" data-rotation="-.05">I</h1>
<h1 class="letter back" data-rotation=".1">T</h1>
<h1 class="letter front" data-rotation=".1">S</h1>
<h1 class="letter middle" data-rotation=".05">.</h1>
<h1 class="letter back" data-rotation=".2">.</h1>
<h1 class="letter middle" data-rotation=".09">.</h1>
</div>
<div class="flex justify-end items-center header-div z-10 h-4/6 div-dex md:pr-16 pr-2 ml-auto">
<button id="btn-dex" class="flex items-center justify-center py-4 px-6 text-white/75">
<h1 class="font-brand-title text-4xl booze-dex pl-1 pr-8">Home</h1>
<i class="fa-solid fa-igloo md:text-6xl lg:text-7xl text-5xl"></i>
</button>
</div>
</header>
<main class="flex z-10 relative w-full py-16 px-8 jusify-center items-center">
<!-- Existing content might go here, ensure it integrates well -->
<section class="credits-section bg-opacity-50 shadow-xl rounded-lg p-4 border-2 border-gray-300 text-center">
<h2 class="text-xl font-bold mb-4">New Tech Used</h2>
<div class="container">
<h3 class="text-lg font-semibold">APIs:</h3>
<ul class="list-disc list-inside">
<li><a href="https://www.thecocktaildb.com/api.php" class="text-blue-500 hover:underline">TheCocktailDB</a></li>
<li><a href="https://pokeapi.co/" class="text-blue-500 hover:underline">PokeAPI</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold">CSS Framework:</h3>
<ul class="list-disc list-inside">
<li><a href="https://tailwindcss.com/docs/" class="text-blue-500 hover:underline">TailwindCSS</a></li>
</ul>
</div>
<h2 class="text-xl font-bold my-4">Team Roles</h2>
<div id="team-info" class="space-y-4"> <!-- JavaScript will populate this div -->
<!-- Team member details will be dynamically added here -->
</div>
</section>
</main>
<footer class="flex flex-col items-center h-3/12 brand-bg border-t-slate-500 border-t-2 z-20">
<a id="GH-link" href="https://github.com/Rod-Freedom/P1-Pokeholic" target="_blank" class="h-1/3 flex flex-row justify-center items-center text-2xl w-fit text-slate-300 hover:text-slate-50">
<i class="fa-brands fa-github"></i>
<h3 class="ml-3 font-content font-light underline-offset-4 link-text"><span class="font-bold">PokEhólic</span> GitHub</h3>
</a>
</footer>
</body>
</html>