-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
88 lines (85 loc) · 2.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<title>Yu-Gi-Oh! Deck-Tool</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<style>
/* Styles here are only required when running the application standalone, not when embedding it */
body {
margin: 0;
padding: 0;
}
/* Mirror ygoprodeck.com */
.standalone-wrapper {
width: 94%;
margin: 0 auto;
max-width: 1220px;
}
</style>
</head>
<body>
<div class="standalone-wrapper">
<div class="deck-tool">
<header class="deck-tool__header">
<h1>Yu-Gi-Oh! Deck-Tool</h1>
<p>
A tool to share and edit decks, view deck prices, and
much more.
</p>
<p>
Hint: You can add and remove cards from the deck below
by dragging cards.
</p>
</header>
<main>
<noscript>
<strong>
We're sorry but this application doesn't work
properly without JavaScript enabled. Please enable
it to continue.
</strong>
</noscript>
<div
id="deckToolApplication"
class="deck-tool__application"
></div>
</main>
<footer class="deck-tool__footer">
<p>
<span
>Created by
<a
href="https://rilling.dev/"
target="_blank"
rel="noopener"
>
F. Rilling
</a>
</span>
|
<span>
<a
href="https://github.com/RillingDev/yugioh-deck-tool"
target="_blank"
rel="noopener"
>
Project source code
</a>
</span>
</p>
</footer>
</div>
</div>
<script type="module" src="/src/tooltip/main.ts"></script>
<script type="module" src="/src/application/main.ts"></script>
</body>
</html>