-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
224 lines (222 loc) · 8.92 KB
/
index.html
File metadata and controls
224 lines (222 loc) · 8.92 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
background-color: #131313;
}
body *:not(#loading-overlay) {
opacity: 0;
}
body.loaded *:not(#loading-overlay) {
opacity: unset;
}
.hosts-section {
padding: 8rem 0;
min-height: 100vh;
}
.hosts-section h1 {
text-align: center;
margin-bottom: 4rem;
font-size: 3rem;
color: var(--primary-color);
}
.hosts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.host-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 1rem;
padding: 2rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.host-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.host-header {
margin-bottom: 1.5rem;
}
.host-name {
font-size: 1.5rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
}
.host-description {
color: var(--light-text);
opacity: 0.8;
font-size: 0.9rem;
}
.host-members {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.member-card {
text-align: center;
}
.member-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
margin-bottom: 0.5rem;
border: 2px solid var(--primary-color);
padding: 3px;
background-color: var(--background-color);
cursor: pointer;
transition: border-color 0.3s ease;
}
.member-avatar:hover {
border-color: var(--accent-color, var(--secondary-color));
}
.member-name {
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 0.25rem;
}
.member-role {
font-size: 0.8rem;
opacity: 0.7;
}
.member-github {
color: var(--primary-color);
font-size: 0.8rem;
text-decoration: none;
display: inline-block;
margin-top: 0.25rem;
}
.member-github:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.hosts-grid {
grid-template-columns: 1fr;
}
.host-members {
grid-template-columns: 1fr;
}
}
</style>
<link rel="stylesheet" href="/css/home.css" />
<script src="/js/templater.js"></script>
</head>
<body>
<div id="page-content">
<header class="hero">
<div class="container">
<h1>APEX Hackathon 2024</h1>
<p class="lead">
24 Hours of Coding, Creating, and Collaboration
</p>
<p class="date">December 13 - 14, 2024</p>
<div class="cta-buttons">
<a href="schedule.html" class="cta-button primary"
>View Schedule</a
>
<a
href="https://forms.gle/Qw8Rj1tY3ET8jz6q6"
class="cta-button secondary"
target="_blank"
>Register Now</a
>
</div>
</div>
</header>
<section class="event-info">
<div class="container">
<div class="info-grid">
<div class="info-card">
<i class="fas fa-calendar-alt"></i>
<h3>When & Where</h3>
<p>
Join us at the
<a
href="https://maps.app.goo.gl/FMVfvdGhscPcScvNA"
target="_blank"
>WILC</a
>
on December 13 - 14 for an exciting 24-hour
hackathon experience.
</p>
<ul class="event-highlights">
<li>Check-in: Friday, December 13 @ 4:45 PM</li>
<li>End of day 1: 9:00 PM</li>
<li>
Start of day 2: Saturday, December 13 @ 7:30
PM
</li>
<li>Judging: 5:00 PM</li>
</ul>
</div>
<div class="info-card">
<i class="fas fa-laptop-code"></i>
<h3>What to Expect</h3>
<p>
An immersive coding experience where you'll work
in teams to code cool stuff.
Perfect for both beginners and experienced
developers!
</p>
<ul class="event-highlights">
<li>Team-based project development</li>
<li>Mentorship from industry experts</li>
<li>Business sponsor showcase</li>
<li>Prizes and awards</li>
</ul>
</div>
<div class="info-card">
<i class="fas fa-tools"></i>
<h3>What to Bring</h3>
<p>
Come prepared with your essential gear and
creativity. We'll provide the learning
environment and pizza!
</p>
<ul class="event-highlights">
<li>Laptop & charger</li>
<li>Comfortable clothes</li>
<li>Snacks (nut-free please!)</li>
<li>Saturday lunch</li>
</ul>
</div>
</div>
</div>
</section>
<section class="features">
<div class="container">
<h2 id="why-join">Why Join APEX Hackathon?</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-code"></i>
<h3>Get Your Code On</h3>
<p>
Collaborate with a rad team to create something awesome during the APEX Hackathon.
It's a chance to swap ideas, pick up new tricks, and make something cool with fellow coders.
</p>
</div>
<div class="feature-card">
<i class="fas fa-users"></i>
<h3>Level Up Your Skills</h3>
<p>
Participating in community events like the APEX Hackathon is a great way to gain real-world experience in coding!
You'll learn heaps by doing, rather than just reading tutorials.
</p>
</div>
<div class="feature-card">
<i class="fas fa-trophy"></i>
<h3>Show Off Your Stuff</h3>
<p>
Go head-to-head with other hackers for the bragging rights and a sweet certificate to prove your APEX Hackathon win!
It's a fantastic way to beef up your portfolio.
</p>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
</html>