-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
79 lines (75 loc) · 4.34 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop</title>
<link rel="stylesheet" href="style.css">
<link rel="preload" href="Mona-Sans.woff2" as="font" type="font/woff2" crossorigin>
<link rel="icon" type="image/x-icon" href="img/epikGAMES.png">
</head>
<body id="bod">
<header>
<nav>
<img src="img/epikGAMES.png" alt="Logo" class="logo" />
<ul>
<a href="index.html">Home</a>
<p>BrainDollah: <p1 class="coin" id="coins"></p1></p>
</ul>
</nav>
</header>
<div class="notifications-container" id="notif">
<div class="info">
<div class="flex">
<div class="flex-shrink-0">
<svg class="info-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z" clip-rule="evenodd"></path>
</svg>
</div>
<div class="info-prompt-wrap">
<p class="info-prompt-msg">
Bro You Got Insufficient Funds Man!!
<a class="info-prompt">Maybe get your ass to work and earn a bit, yeah?</a>
</p>
</div>
</div>
</div>
</div>
<div class="shop-main"">
<div class="vignette"></div>
<h2>THE EPIK SHOP</h2>
<img src="img/ORLDWW0.png" class="shopbg-img" />s
<div class="card1" onclick="hint()">
<span class="revealUp card-head1">Hint</span>
<span class="revealUp card-price1">B$15</span>
</div>
<h3 class="revealUp" ><span class="accenttext">Get a Hint™️.</span> Our improved systems can detect where you are stuck in the Hunt and will provide you with the best Hint™️ possible for the next code. Please note that there is only one Hint™️ per code to maintain the difficulty level of the Hunt hence buying another Hint™️ while stuck on the same code will not grant you a different Hint™️.</h3>
<div class="card2" onclick="doubler()">
<span class="revealUp card-head2">Doubler</span>
<span class="revealUp card-price2">B$50</span>
</div>
<h4 class="revealUp" ><span class="accenttext2">B$-Doubler™️.</span> It enables you to get double the Braindollah each code or achievement. A great investment to say the least. Does not reset and is a one time payment.</h4>
<div class="card3" onclick="dildo()">
<span class="revealUp card-head3">Dildo</span>
<span class="revealUp card-price3">B$10</span>
</div>
<h5 class="revealUp"><span class="accenttext3">Dildo™️.</span> The new and improved phallic object which can be added to your collection! Doesn't really have any other use besides being a part of your collection.</h5>
<div class="card4" onclick="dildole()">
<span class="revealUp card-head4">Dildo LE</span>
<span class="revealUp card-price4">B$25</span>
</div>
<h6 class="revealUp"><span class="accenttext4">Dildo™️ Legacy Edition.</span> The good old dildo from our original website! All the available Dildos from the previous website have been painted gold which can be again, added to your collection!</h6>
<div class="card5" onclick="crypt()">
<span class="revealUp card-head5">Crypt Key</span>
<span class="revealUp card-price5">B$100</span>
</div>
<h7 class="revealUp"><span class="accenttext5">Crypt Key™️.</span> We don't really know how this thing made its way on our store so you don't really need to pay any attention to this. Regardless if you really wanna buy it, good luck getting the required B$.</h7>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/ScrollTrigger.min.js"></script>
<script src="img/app.js"></script>
<script src="shop.js"></script>
<script src="info.js"></script>
</body>
</html>