Skip to content

Commit c9d3f1d

Browse files
Add files via upload
1 parent 308bfb9 commit c9d3f1d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+23066
-0
lines changed

guides.css

+408
Large diffs are not rendered by default.

guides.html

+238
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,238 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Guides - WIP</title>
5+
<meta property="og:title" content="Guides - WIP" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
<meta property="twitter:card" content="summary_large_image" />
9+
10+
<style data-tag="reset-style-sheet">
11+
html { line-height: 1.15;}body { margin: 0;}* { box-sizing: border-box; border-width: 0; border-style: solid;}p,li,ul,pre,div,h1,h2,h3,h4,h5,h6,figure,blockquote,figcaption { margin: 0; padding: 0;}button { background-color: transparent;}button,input,optgroup,select,textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}button,select { text-transform: none;}button,[type="button"],[type="reset"],[type="submit"] { -webkit-appearance: button;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner { border-style: none; padding: 0;}button:-moz-focus,[type="button"]:-moz-focus,[type="reset"]:-moz-focus,[type="submit"]:-moz-focus { outline: 1px dotted ButtonText;}a { color: inherit; text-decoration: inherit;}input { padding: 2px 4px;}img { display: block;}html { scroll-behavior: smooth }
12+
</style>
13+
<style data-tag="default-style-sheet">
14+
html {
15+
font-family: Source Sans Pro;
16+
font-size: 16px;
17+
}
18+
19+
body {
20+
font-weight: 400;
21+
font-style:normal;
22+
text-decoration: none;
23+
text-transform: none;
24+
letter-spacing: normal;
25+
line-height: 1.15;
26+
color: var(--dl-color-gray-black);
27+
background-color: var(--dl-color-gray-white);
28+
29+
}
30+
</style>
31+
<link
32+
rel="shortcut icon"
33+
href="public/playground_assets/screenshot_2023-05-13_10.49.15_pm-removebg-preview.png"
34+
type="icon/png"
35+
sizes="32x32"
36+
/>
37+
<link
38+
rel="stylesheet"
39+
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&amp;display=swap"
40+
data-tag="font"
41+
/>
42+
43+
<style data-section-id="dropdown">
44+
[data-thq="thq-dropdown"]:hover > [data-thq="thq-dropdown-list"] {
45+
display: flex;
46+
}
47+
48+
[data-thq="thq-dropdown"]:hover > div [data-thq="thq-dropdown-arrow"] {
49+
transform: rotate(90deg);
50+
}
51+
</style>
52+
<link rel="stylesheet" href="./style.css" />
53+
<script src="https://unpkg.com/scrollreveal"></script>
54+
<script>
55+
ScrollReveal({ reset: true });
56+
</script>
57+
</head>
58+
<body>
59+
<div>
60+
<link href="./guides.css" rel="stylesheet" />
61+
62+
<div class="guides-container">
63+
<header data-thq="thq-navbar" class="guides-navbar-interactive">
64+
<a href="index.html" class="guides-navlink">
65+
<img
66+
alt="logo"
67+
src="public/playground_assets/images-removebg-preview2-200h.png"
68+
class="guides-logo"
69+
/>
70+
</a>
71+
<div
72+
data-thq="thq-navbar-nav"
73+
data-role="Nav"
74+
class="guides-desktop-menu"
75+
>
76+
<nav
77+
data-thq="thq-navbar-nav-links"
78+
data-role="Nav"
79+
class="guides-nav"
80+
>
81+
<a href="flash-games.html" class="guides-navlink01">
82+
<span class="guides-text">Flash Games</span>
83+
<br />
84+
</a>
85+
<a href="gameboy-games.html" class="guides-navlink02">
86+
Gameboy Games
87+
</a>
88+
<a href="proxies.html" class="guides-navlink03">Proxies</a>
89+
<a href="guides.html" class="guides-navlink04">Guides</a>
90+
<a
91+
href="https://discord.gg/62PsHFFQHm"
92+
target="_blank"
93+
rel="noreferrer noopener"
94+
class="guides-link"
95+
>
96+
<span class="guides-text02">WIP Discord</span>
97+
<br />
98+
</a>
99+
</nav>
100+
</div>
101+
<div data-thq="thq-navbar-btn-group" class="guides-btn-group"></div>
102+
<div data-thq="thq-burger-menu" class="guides-burger-menu">
103+
<svg viewBox="0 0 1024 1024" class="guides-icon">
104+
<path
105+
d="M128 554.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 298.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 810.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
106+
></path>
107+
</svg>
108+
</div>
109+
<div data-thq="thq-mobile-menu" class="guides-mobile-menu">
110+
<div
111+
data-thq="thq-mobile-menu-nav"
112+
data-role="Nav"
113+
class="guides-nav1"
114+
>
115+
<div class="guides-container1">
116+
<a href="index.html" class="guides-navlink05">
117+
<img
118+
alt="image"
119+
src="public/playground_assets/images-removebg-preview2-200h.png"
120+
class="guides-image"
121+
/>
122+
</a>
123+
<div data-thq="thq-close-menu" class="guides-menu-close">
124+
<svg viewBox="0 0 1024 1024" class="guides-icon2">
125+
<path
126+
d="M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z"
127+
></path>
128+
</svg>
129+
</div>
130+
</div>
131+
<nav
132+
data-thq="thq-mobile-menu-nav-links"
133+
data-role="Nav"
134+
class="guides-nav2"
135+
>
136+
<a href="flash-games.html" class="guides-navlink06">
137+
Flash Games
138+
</a>
139+
<a href="gameboy-games.html" class="guides-navlink07">
140+
Gameboy Games
141+
</a>
142+
<a href="proxies.html" class="guides-navlink08">Proxies</a>
143+
<a href="guides.html" class="guides-navlink09">Guides</a>
144+
<a
145+
href="https://discord.gg/62PsHFFQHm"
146+
target="_blank"
147+
rel="noreferrer noopener"
148+
class="guides-link1"
149+
>
150+
WIP Discord
151+
</a>
152+
</nav>
153+
</div>
154+
<div class="guides-icon-group"></div>
155+
</div>
156+
</header>
157+
<div class="guides-container2">
158+
<div class="guides-container3">
159+
<h1 class="guides-text04">Making your own URL</h1>
160+
<div class="guides-btn-group1">
161+
<a href="github-guide.html" class="guides-navlink10 button">
162+
Get Started
163+
</a>
164+
</div>
165+
<span class="guides-text05">
166+
<br class="guides-text06" />
167+
<span class="guides-text07">
168+
I specifically made this website entirely reliant upon itself
169+
and easily duplicatable and open source. This guide is very
170+
simple and has pictures to make it easier for you to make your
171+
own version.
172+
</span>
173+
<br />
174+
<span></span>
175+
<span></span>
176+
</span>
177+
</div>
178+
<img
179+
alt="image"
180+
src="public/playground_assets/download-1500w.jpeg"
181+
class="guides-image1"
182+
/>
183+
</div>
184+
<div class="guides-container4">
185+
<div class="guides-container5">
186+
<h1 class="guides-text11">Making a Rammerhead Website</h1>
187+
<div class="guides-btn-group2">
188+
<a href="rammerhead-guide.html" class="guides-navlink11 button">
189+
Get Started
190+
</a>
191+
</div>
192+
<span class="guides-text12">
193+
<br class="guides-text13" />
194+
<span>This takes about 5 minutes and uses FreeDNS</span>
195+
<br />
196+
<br />
197+
<span>
198+
The guides contents are taken from the Rammehead Project. I love
199+
those people and you should go give them a star on github to
200+
make them happy while you use their product.&nbsp;
201+
</span>
202+
<br />
203+
<span></span>
204+
<span></span>
205+
</span>
206+
</div>
207+
<img
208+
alt="image"
209+
src="public/playground_assets/rh-200h.png"
210+
class="guides-image2"
211+
/>
212+
</div>
213+
</div>
214+
</div>
215+
<script
216+
type="text/javascript"
217+
src="https://www.googletagmanager.com/gtag/js?id=G-3JZWTEPZXN"
218+
async=""
219+
></script>
220+
<script type="text/javascript">
221+
window.dataLayer = window.dataLayer || [];
222+
function gtag(){dataLayer.push(arguments);}
223+
gtag('js', new Date());
224+
gtag('config', 'G-3JZWTEPZXN');
225+
</script>
226+
<script type="text/javascript">
227+
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
228+
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
229+
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
230+
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
231+
})(window,document,'script','dataLayer','GTM-KCNV8W8');
232+
</script>
233+
<script
234+
data-section-id="navbar"
235+
src="https://unpkg.com/@teleporthq/teleport-custom-scripts"
236+
></script>
237+
</body>
238+
</html>

0 commit comments

Comments
 (0)