-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (103 loc) · 5.44 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
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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<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">
<link rel="stylesheet" href="dist/output.css">
<!-- Primary Meta Tags -->
<title>Twink Code</title>
<meta name="title" content="Twink Code">
<meta name="description"
content="While bears live for hair and smurfs for humor, a twink lives for style. As such, style factors are the major way of recognizing a twink. This site helps you quickly decode other twink codes and create your own">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://pain-software.github.io/twink-code/">
<meta property="og:title" content="Twink Code">
<meta property="og:description"
content="While bears live for hair and smurfs for humor, a twink lives for style. As such, style factors are the major way of recognizing a twink. This site helps you quickly decode other twink codes and create your own">
<meta property="og:image" content="https://pain-software.github.io/twink-code/assets/cover.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://pain-software.github.io/twink-code/">
<meta property="twitter:title" content="Twink Code">
<meta property="twitter:description"
content="While bears live for hair and smurfs for humor, a twink lives for style. As such, style factors are the major way of recognizing a twink. This site helps you quickly decode other twink codes and create your own">
<meta property="twitter:image" content="https://pain-software.github.io/twink-code/assets/cover.png">
</head>
<body class="bg-stone-900 text-white overflow-x-hidden">
<main class="w-full h-screen grid place-items-center min-h-screen">
<section class="space-y-5 w-1/2 text-center">
<h1 class="text-8xl font-bold">Twink Code</h1>
<p>While bears live for hair and smurfs for humor, a twink lives for style. As such, style factors are the
major way of recognizing a twink.
This site helps you quickly decode other twink codes and <del>create your own</del><sup>(soon™)</sup>!
</p>
<p>This site is using modified <a target="_blank" href="https://user.xmission.com/~trevin/twink112.html"
class="text-blue-600 hover:underline">Twink Code version 1.12</a>.</p>
<input type="text" class="
bg-white
font-normal
w-full
px-3
py-1.5
m-0
text-base
text-gray-700
text-center
transition
ease-in-out
focus:text-gray-700 focus:bg-white focus:outline-none
" id="twinkcodeinput" placeholder="Insert Your Twink Code™" />
<span class="flex items-center justify-center w-full gap-4">
<button id="decode" type="button"
class="text-white py-2 px-5 bg-blue-700 hover:bg-blue-800 focus:outline-none">Decode</button>
</span>
</section>
</main>
<div id="tools" class="hidden text-sm flex space-x-2.5 w-full justify-end items-baseline text-stone-400 px-6 py-3">
<button id="screenshot">Screenshot</button>
<button id="viewToggle">Switch Layout</button>
</div>
<section id="results">
</section>
<div class="fixed" style="left: 200%">
<section id="result_screenshot" class="bg-stone-900 relative w-screen pt-8">
<span class="grid justify-center text-center gap-4">
<span>My Twink Code is</span>
<h1 id="result_code"
class="text-4xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
T5C7L3shl(--)++da-c--etk++sq</h1>
</span>
<div id="result_content" class="mx-16 py-4"></div>
<span id="result_footer" class="flex justify-between items-center mx-16 py-4 text-sm text-stone-400">
<code>Twink Code</code>
<time>26.8.2022 12:00</time>
</span>
</section>
</div>
<footer class="p-4 w-full shadow md:flex md:items-center md:justify-between md:p-6">
<span class="text-sm text-stone-400">
Made by <a target="_blank" href="https://reddit.com/u/bahamut731lp"
class="text-blue-600 hover:underline">u/Bahamut731lp</a>
</span>
<ul class="flex flex-wrap items-center mt-3 text-sm text-stone-400 sm:mt-0">
<li>
<a target="_blank" href="changelog.html" class="mr-4 hover:underline md:mr-6">Changelog</a>
</li>
<li>
<a target="_blank" href="https://user.xmission.com/~trevin/twink112.html"
class="mr-4 hover:underline md:mr-6">Original
Twink Code Document</a>
</li>
<li>
<a target="_blank" href="index.html" class="hover:underline">The Twink Code, version 1.1</a>
</li>
</ul>
</footer>
<script src="assets/dom-to-image.min.js"></script>
<script src="src/data.js"></script>
<script src="src/parsers.js"></script>
<script src="src/master.js"></script>
</body>
</html>