Skip to content

Commit 5efea09

Browse files
committed
2 parents 06e0bd6 + 45de8f4 commit 5efea09

File tree

11 files changed

+473
-102
lines changed

11 files changed

+473
-102
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
.DS_Store
3+
.vscode/settings.json

amongus/index.html

+289
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,289 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8" />
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<title>ThetaHacks - Among Us Links</title>
7+
<link rel="icon" href="../img/logo/logo_nobuffer.png" />
8+
9+
<!-- meta -->
10+
<meta
11+
name="description"
12+
content="ThetaHacks is a 36 hour virtual high school hackathon for developers of all skill levels."
13+
/>
14+
<meta
15+
name="viewport"
16+
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1"
17+
/>
18+
<meta name="author" content="ThetaHacks" />
19+
20+
<!-- OpenGraph Meta -->
21+
22+
<meta
23+
property="og:title"
24+
content="ThetaHacks | Bringing the world of tech to prospective engineers"
25+
/>
26+
<meta property="og:site_name" content="ThetaHacks" />
27+
<meta property="og:type" content="website" />
28+
29+
<meta
30+
property="og:description"
31+
content="ThetaHacks is a hackathon with swag and awards for high-school hackers of all ages and skill levels across the globe!"
32+
/>
33+
<meta
34+
property="og:image"
35+
content="https://thetahacks.tech/img/logo/banner.png"
36+
/>
37+
<meta property="og:image:width" content="1200" />
38+
<meta property="og:image:height" content="627" />
39+
<meta property="og:locale" content="en_US" />
40+
<meta property="twitter:site" content="ThetaHacks" />
41+
<meta
42+
property="twitter:text:title"
43+
content="ThetaHacks is a hackathon with swag and awards for high-school hackers of all ages and skill levels across the globe!"
44+
/>
45+
<meta
46+
property="twitter:image"
47+
content="https://thetahacks.tech/img/logo/banner.png"
48+
/>
49+
<meta property="twitter:card" content="summary_large_image" />
50+
<meta property="og:url" content="https://thetahacks.tech/links" />
51+
52+
<!-- CSS -->
53+
<link
54+
rel="stylesheet"
55+
href="https://fonts.googleapis.com/css?family=Montserrat"
56+
/>
57+
<link
58+
rel="stylesheet"
59+
href="https://fonts.googleapis.com/css?family=Merriweather"
60+
/>
61+
<link rel="stylesheet" href="../css/bootstrap.min.css" />
62+
<link rel="stylesheet" href="../css/hover.css" />
63+
<link rel="stylesheet" href="../css/button.css" />
64+
<link rel="stylesheet" href="../css/info.css" />
65+
<link rel="stylesheet" href="../css/table.css" />
66+
<link rel="stylesheet" href="../css/animate.min.css" />
67+
<link rel="stylesheet" href="../css/fontawesome.min.css" />
68+
<link rel="stylesheet" href="../css/hamburger.min.css" />
69+
<link rel="stylesheet" href="../fonts/montserrat.css" />
70+
<link rel="stylesheet" href="../fonts/exo.css" />
71+
</head>
72+
73+
<body>
74+
<div class="overlay2"></div>
75+
76+
<div class="nonoverlay">
77+
<div
78+
class="banner"
79+
id="banner"
80+
style="
81+
padding: 10px;
82+
text-align: center;
83+
z-index: 10000000;
84+
position: fixed;
85+
background: rgb(105, 0, 0);
86+
width: 100vw;
87+
left: 0;
88+
top: 0;
89+
display: none;
90+
"
91+
>
92+
<div class="banner-content">
93+
<p style="margin: 0">
94+
You are viewing this page on an unsupported browser or device. For
95+
best performance, use
96+
<a href="https://www.google.com/chrome/" target="_blank">Chrome</a> or
97+
<a href="https://www.mozilla.org/en-US/firefox/new/" target="_blank"
98+
>Firefox</a
99+
>
100+
on a computer.<br /><u
101+
><span onclick="hide(); return false" style="cursor: pointer"
102+
>Dismiss</span
103+
></u
104+
>
105+
</p>
106+
</div>
107+
</div>
108+
109+
<script>
110+
function hide() {
111+
document.getElementById("banner").style.display = "none";
112+
}
113+
</script>
114+
115+
<a
116+
href="/"
117+
style="
118+
position: fixed;
119+
top: 2vh;
120+
left: 3vw;
121+
background: #04040a;
122+
padding: 10px 20px;
123+
border-radius: 20px;
124+
"
125+
id="backb"
126+
><span class="underline">Back to main site</span></a
127+
>
128+
129+
<div class="title-container" style="text-align: center">
130+
<div
131+
class="title-left animate__animated animate__bounceInLeft"
132+
style="display: inline-block"
133+
>
134+
<h2 class="main-title" id="title-1">Theta</h2>
135+
</div>
136+
<div
137+
class="title-right animate__animated animate__bounceInRight"
138+
style="display: inline-block"
139+
>
140+
<h2 class="main-title" id="title-2">
141+
Hacks
142+
<span style="font-family: Merriweather; font-weight: 600" id="title-i"
143+
>I</span
144+
>
145+
</h2>
146+
</div>
147+
</div>
148+
149+
<div
150+
style="
151+
background: #00000088;
152+
border-radius: 30px;
153+
margin-top: 5vh;
154+
padding-bottom: 3vh;
155+
"
156+
id="d1"
157+
>
158+
<h2
159+
style="
160+
padding: 5vh 4vw 0vh 4vw;
161+
text-align: center;
162+
color: #ddf5ff !important;
163+
font-weight: 800 !important;
164+
"
165+
id="h23"
166+
>
167+
Among Us Links
168+
</h2>
169+
<p style="padding: 2vh 4vw; text-align: center" id="p2">
170+
171+
<a
172+
href="https://gofile.io/d/m0klbz"
173+
target="_blank"
174+
class="underline3"
175+
>APK (Free) - Android/Emulator</a
176+
><br />
177+
<a
178+
href="https://apps.apple.com/us/app/among-us/id1351168404"
179+
target="_blank"
180+
class="underline3"
181+
>App Store (Free) - iOS</a
182+
><br />
183+
<a
184+
href="https://play.google.com/store/apps/details?id=com.innersloth.spacemafia&hl=en_US&gl=US"
185+
target="_blank"
186+
class="underline3"
187+
>Play Store (Free) - Android</a
188+
><br />
189+
<a
190+
href="https://store.steampowered.com/app/945360/Among_Us/"
191+
target="_blank"
192+
class="underline3"
193+
>Steam ($5) - PC</a
194+
><br />
195+
</p>
196+
</div>
197+
</div>
198+
199+
<!-- FOOTER -->
200+
<section
201+
style="
202+
padding: 5vh 0vh 5vh 0vh;
203+
background: #101020;
204+
margin-top: 5vh;
205+
z-index: 100000 !important;
206+
position: relative;
207+
"
208+
>
209+
<!-- logos since imo white and black are meh: https://www.flaticon.com/packs/social-media?word=social%20media -->
210+
<div class="footer-container" style="text-align: center; display: block">
211+
<div class="social-links">
212+
<a
213+
href="https://discord.gg/NCpE8PD"
214+
style="display: inline-block"
215+
target="_blank"
216+
>
217+
<img
218+
class="social-logo"
219+
src="../img/media/discord.svg"
220+
alt="Discord"
221+
/>
222+
</a>
223+
<a
224+
href="https://www.linkedin.com/company/ThetaHacks"
225+
style="display: inline-block"
226+
target="_blank"
227+
>
228+
<img
229+
class="social-logo"
230+
src="../img/media/linkedin.svg"
231+
alt="LinkedIn"
232+
/>
233+
</a>
234+
<a
235+
class="social-link"
236+
href="https://www.instagram.com/thetahacks/"
237+
target="_blank"
238+
>
239+
<img
240+
class="social-logo"
241+
src="../img/media/instagram.svg"
242+
alt="Instagram"
243+
/>
244+
</a>
245+
<a
246+
class="social-link"
247+
href="mailto:[email protected]"
248+
target="_blank"
249+
>
250+
<img class="social-logo" src="../img/media/gmail.svg" alt="Gmail" />
251+
</a>
252+
<a
253+
class="social-link"
254+
href="https://twitter.com/ThetaHacks"
255+
target="_blank"
256+
>
257+
<img
258+
class="social-logo"
259+
src="../img/media/twitter.svg"
260+
alt="Twitter"
261+
/>
262+
</a>
263+
<a
264+
class="social-link"
265+
href="https://github.com/ThetaHacks"
266+
target="_blank"
267+
>
268+
<img class="social-logo" src="../img/media/cat.svg" alt="Cat" />
269+
</a>
270+
<a
271+
href="https://www.hackclub.com/bank"
272+
style="margin: 2% 20px; display: inline-block"
273+
target="_blank"
274+
>
275+
<img class="social-logo-2" src="../img/media/bank.png" alt="Bank" />
276+
</a>
277+
</div>
278+
</div>
279+
</section>
280+
<section id="copyright-wrapper" style="background: #050510">
281+
<p id="copyright">
282+
Copyright &copy; 2021 ThetaHacks, a 501(c)(3) non-profit organization,
283+
fiscally sponsored by Hack Club Bank.
284+
</p>
285+
</section>
286+
<script src="../js/jquery-3.5.1.min.js"></script>
287+
<script src="../js/jquery.visible.min.js"></script>
288+
<script src="../js/infomain.js"></script>
289+
</body>

confirm/index.html

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta
5+
name="viewport"
6+
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
7+
/>
8+
<title>ThetaHacks Volunteer Confirmation</title>
9+
<style type="text/css">
10+
html {
11+
margin: 0;
12+
height: 100%;
13+
overflow: hidden;
14+
}
15+
iframe {
16+
position: absolute;
17+
left: 0;
18+
right: 0;
19+
bottom: 0;
20+
top: 0;
21+
border: 0;
22+
}
23+
</style>
24+
</head>
25+
<body>
26+
<iframe
27+
id="typeform-full"
28+
width="100%"
29+
height="100%"
30+
frameborder="0"
31+
allow="camera; microphone; autoplay; encrypted-media;"
32+
src="https://form.typeform.com/to/Dr9QrFTP?typeform-medium=embed-snippet"
33+
></iframe>
34+
<script
35+
type="text/javascript"
36+
src="https://embed.typeform.com/embed.js"
37+
></script>
38+
</body>
39+
</html>

img/profiles/jonathan.jpeg

27.5 KB
Loading

img/profiles/leather.png

238 KB
Loading

img/profiles/suson.png

37.6 KB
Loading

0 commit comments

Comments
 (0)