-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshop.html
More file actions
226 lines (212 loc) · 8.27 KB
/
shop.html
File metadata and controls
226 lines (212 loc) · 8.27 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nucleic Evolution - Shop</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="effects.css">
<script src="effects.js"></script>
<script src="navbar.js"></script>
<style>
body {
background-color: #2d3748; /* Dark gray background */
color: white;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.flex-grow {
flex-grow: 1;
}
.product-card {
background-color: #1f2937; /* Darker gray for product cards */
color: white;
}
.product-card a {
color: #fbbf24; /* Light yellow */
}
.product-card a:hover,
.product-card a:focus {
color: #e4e400;
}
footer {
background-color: #1f2937; /* Dark gray */
color: #d1d5db; /* Light gray */
}
.product-card:hover {
transform: scale(1.05);
transition: transform 0.3s ease;
}
.button-custom {
background-color: #fbbf24;
color: black;
padding: 10px 20px;
border-radius: 5px;
font-size: 16px;
transition: all 0.3s ease;
}
.button-custom:hover {
background-color: black;
color: #fbbf24;
}
#cart-count {
position: absolute;
top: -8px;
right: -8px;
background-color: #ef4444;
color: white;
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: bold;
}
.nav-link {
position: relative;
}
</style>
</head>
<body>
<!-- Navbar -->
<div id="navbar-container"></div>
<!-- Shop Section -->
<div class="flex-grow">
<section class="container mx-auto px-6 py-8 mt-16">
<h2 class="text-2xl font-bold text-white">Shop</h2>
<div class="mt-6 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=divinity-pack">
<img class="w-full h-70 object-cover object-center" src="Images/New_factions/Deity/horus.webp" alt="Divinity Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Divinity Pack</h3>
<p class="mt-2">A brand-new wave of divinity clashes with the existing factions!</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">Coming Soon!</span>
<a href="product.html?id=divinity-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=dinosaur-pack">
<img class="w-full h-70 object-cover object-center" src="Images/Characters/dinosaurs/allausorus.webp" alt="Dinosaur Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Dinosaur Pack</h3>
<p class="mt-2">The stomping has begun...</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">$5.00</span>
<a href="product.html?id=dinosaur-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=undead-pack">
<img class="w-full h-70 object-cover object-center" src="Images/Characters/anime_bonnies/dual_sword_undead.webp" alt="Undead Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Undead Pack</h3>
<p class="mt-2">Arise, melodies of death and horror</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">$5.00</span>
<a href="product.html?id=undead-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=harpy-pack">
<img class="w-full h-70 object-cover object-center" src="Images/Characters/anime_harpies/Howl_harpy.webp" alt="Harpy Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Harpy Pack</h3>
<p class="mt-2">Masters of the wind and sky</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">$5.00</span>
<a href="product.html?id=harpy-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=insect-pack">
<img class="w-full h-70 object-cover object-center" src="Images/Evolution/struggle1.webp" alt="Insect Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Insect Pack</h3>
<p class="mt-2">Warriors of the earth and blessed by nature</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">$5.00</span>
<a href="product.html?id=insect-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=angel-pack">
<img class="w-full h-70 object-cover object-center" src="Images/Lands/temple.webp" alt="Angel Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Angel Pack</h3>
<p class="mt-2">Supervisors of dawn and preventers of chaos</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">$5.00</span>
<a href="product.html?id=angel-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=ancient-pack">
<img class="w-full h-70 object-cover object-center" src="Images/Characters/realistic_ancients/ancient14.webp" alt="Ancient Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Ancient Pack</h3>
<p class="mt-2">Nightmares from the beginning of space and time</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">$5.00</span>
<a href="product.html?id=ancient-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=android-pack">
<img class="w-full h-70 object-cover object-center" src="Images/Characters/realistic_punk/Helios.webp" alt="Android Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Android Pack</h3>
<p class="mt-2">Otherworldly intelligent technology built to dictate the outcome of conflicts</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">$5.00</span>
<a href="product.html?id=android-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<div class="product-card shadow-lg rounded-lg overflow-hidden">
<a href="product.html?id=dragon-pack">
<img class="w-full h-70 object-cover object-center" src="Images/Lands/dragon_city2.webp" alt="Dragon Pack">
</a>
<div class="p-4">
<h3 class="text-xl font-bold">Dragon Pack</h3>
<p class="mt-2">Beings of magic, stability and control</p>
<div class="flex justify-between items-center mt-4">
<span class="font-bold">$5.00</span>
<a href="product.html?id=dragon-pack" class="hover:text-gray-800">View Details</a>
</div>
</div>
</div>
<!-- Repeat for other products -->
</div>
</section>
</div>
<!-- Footer -->
<footer class="bg-gray-800 py-4 mt-6">
<div class="container mx-auto text-center">
<p>© 2024 Nucleic Evolution. All rights reserved.</p>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', setupNavbar);
</script>
</body>
</html>