-
Notifications
You must be signed in to change notification settings - Fork 5
/
simhack.html
508 lines (450 loc) · 14.7 KB
/
simhack.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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
<!DOCTYPE html>
<html lang="en">
<head>
<title>SimHack</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link rel='shortcut icon' type='image/x-icon' href='pics/duck.png'/>
<script language="JavaScript">
$( document ).ready(function() {
$("#goToAbout").click(function(){
$("html, body").animate({ scrollTop: $('#aboutDiv').offset().top }, 500);
});
$("#goToFAQ").click(function(){
$("html, body").animate({ scrollTop: $('#FAQDiv').offset().top }, 500);
});
$("#goToRegister").click(function(){
$("html, body").animate({ scrollTop: $('#registerDiv').offset().top }, 500);
});
$("#goToPrizes").click(function(){
$("html, body").animate({ scrollTop: $('#prizeDiv').offset().top }, 500);
})
});
</script>
<style>
html{
overflow-x:hidden;
}
/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
margin-bottom: 0;
border-radius: 0;
}
/* Add a gray background color and some padding to the footer */
footer {
background-color: #f2f2f2;
padding: 25px;
}
.jumbotron{
background-image: url("pics/bg2.jpg");
height:100vh;
margin-bottom: 0px;
}
.navbar-custom{
background:#2c3e50;
border-color:#2c3e50;
}
.navbar-nav {
width: 100%;
text-align: center;
}
.navbar-nav li {
float: none;
display: inline-block;
}
.navbar-nav > li > a {padding-top:15px !important; padding-bottom:5px !important;}
.navbar {min-height:50px !important}
.navbar-custom .navbar-nav .item{
font-weight: bold;
padding-left: 25px;
padding-right: 25px;
text-transform: uppercase;
color: #ffffff;
font-family: 'Montserrat', sans-serif;
}
.navbar-custom .navbar-nav > li > #goToAbout:hover, .navbar-custom .navbar-nav > li > #goToAbout:focus {
color: #dc4a38;
}
.navbar-custom .navbar-nav > li > #goToFAQ:hover, .navbar-custom .navbar-nav > li > #goToFAQ:focus {
color: #1abc9c;
}
.navbar-custom .navbar-nav > li > #goToRegister:hover, .navbar-custom .navbar-nav > li > #goToRegister:focus {
color: #f1c40f;
}
.navbar-custom .navbar-nav > li > #goToPrizes:hover, .navbar-custom .navbar-nav > li > #goToPrizes:focus {
color: #FFBC29;
}
.custom-container{
font-family: 'Montserrat', sans-serif;
}
.custom-container h1{
font-size: 60pt;
font-weight: bold;
color:#2c3e50;
display: inline;
}
.custom-container h2{
color:#2c3e50;
}
.custom-container #leftcol{
padding-top: 20vh;
transform: rotate(-12deg);
}
.custom-container #rightcol{
transform: rotate(-15deg);
padding-top: 15vh;
}
.custom-container #rightcol img {
max-width: 30vw;
height: auto;
}
@media only screen and (max-width: 800px) {
.custom-container #leftcol{
padding-top: 12vh;
transform: rotate(-12deg);
}
.custom-container #rightcol img {
max-width: 50vw;
height: auto;
}
.custom-container h1{
font-size: 40pt;
}
.custom-container h2{
font-size: 20pt;
}
}
.placeholder{
background: #2c3e50;
height: 10px;
}
.about{
background: #FC5454;
height: 350px;
font-family: 'Montserrat', sans-serif;
}
.about .heading{
color: #FFFFFF;
text-shadow: black -0.1em 0.1em 0.2em;
text-align: left;
padding-top: 85px;
}
.about .row{
padding-left: 10px;
padding-right: 10px;
}
.about .heading h1{
font-size: 35pt;
font-weight: bold;
}
.about .content{
color: #FFFFFF;
text-align: left;
padding-top: 110px;
}
@media only screen and (max-width: 800px) {
.about{
height: auto;
}
.about .heading{
padding-top: 30px;
}
.about .content{
color: #FFFFFF;
text-align: left;
padding-top: 30px;
padding-bottom: 30px;
}
}
.faq {
background: #4ECDC4;
font-family: 'Montserrat', sans-serif;
}
.faq .heading{
color: #FFFFFF;
text-shadow: black -0.1em 0.1em 0.2em;
padding-top: 85px;
}
.faq .heading h1{
font-size: 35pt;
font-weight: bold;
}
.faq .row{
margin-left: 18vw;
margin-right: 18vw;
background: #72D7D0;
text-align: left;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
}
.faq .row h2{
font-size: 14pt;
padding-bottom: 8px;
}
.faq .row p {
font-size: 10pt;
font-weight: thin;
}
@media only screen and (max-width: 800px) {
.faq .row{
margin-left: 50px;
margin-right: 50px;
}
}
.register{
background: #FFE86B;
font-family: 'Montserrat', sans-serif;
}
.register .row{
background: #C9D41B;
width: 50vw;
margin-left: auto;
margin-right: auto;
margin-top: 80px;
margin-bottom: 80px;
}
@media only screen and (max-width: 800px) {
.register .row{
width: 80vw;
}
}
.register .row .content h1{
color: #FFFFFF;
text-shadow: black -0.05em 0.07em 0.1em;
font-size: 35pt;
font-weight: bold;
}
.prize {
background: #FFBC29;
font-family: 'Montserrat', sans-serif;
}
.prize .heading{
color: #FFFFFF;
text-shadow: black -0.1em 0.1em 0.2em;
padding-top: 85px;
}
.prize .heading h1{
font-size: 35pt;
font-weight: bold;
}
.prize .row{
margin-left: 14vw;
margin-right: 14vw;
background: #FFCA57;
text-align: left;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
}
.prize .row img{
width: 100%;
height: auto;
}
.ending{
background: #FFFFFF;
font-family: 'Montserrat', sans-serif;
}
.ending .row{
width: 75vw;
margin-left: auto;
margin-right: auto;
}
@media only screen and (max-width: 800px) {
.ending .row{
width: 80vw;
}
}
.ending .row .content img{
width: 200px;
height: auto;
}
.footer{
padding: 0px;
font-family: 'Montserrat', sans-serif;
}
.footer .content{
height: 50px;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top navbar-custom">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a id="goToAbout" href="#" class="item">About</a></li>
<li><a id="goToFAQ" href="#" class="item">FAQ</a></li>
<li><a id="goToRegister" href="#" class="item">Register</a></li>
<li><a id="goToPrizes" href="#" class="item">Prizes</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron">
<div class="container-fluid text-center custom-container">
<div class="row">
<div id="leftcol" class="col-md-6">
<h1 style="color: #e74c3c"> S </h1>
<h1 style="color: #1abc9c"> I </h1>
<h1 style="color: #f1c40f"> M </h1>
<h1> H A C K </h1>
<h2> DECEMBER 3-4 // 2016 </h2>
</div>
<div id="rightcol" class="col-md-6">
<img id ="duck" src="pics/duck.png">
</div>
</div>
</div>
</div>
<div class="container-fluid bg-3 text-center placeholder"></div>
<div id="aboutDiv" class="container-fluid bg-3 text-center about">
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-3 heading">
<h1>WHAT IS<br>SIMHACK?</h1>
</div>
<div class="col-sm-4 content">
<p>SimHack is Simmons Hall's headline hackathon, with over 300 possible undergraduate attendees from around the institute. A 24-hour period from December 3rd to 4th, hackers collaborate and experiment on software and maybe some hardware projects. This is the weekend to meet other enthusiastic hackers, push your boundaries, and realize the projects of your dreams!</p>
</div>
<div class="col-sm-2">
</div>
</div>
</div>
<div id="FAQDiv" class="container-fluid bg-3 text-center faq">
<div class="heading">
<h1>FREQUENTLY ASKED QUESTIONS</h1>
</div>
<br>
<div class="row">
<div class="col-sm-4">
<h2>Can I attend?</h2>
<p>IF (you are a Simmons Resident) OR (you are a decent person) OR (you bring us cupcakes) AND (you are at least 18 years old)) RETURN “Yes!”</p>
</div>
<div class="col-sm-4">
<h2>How does registration work?</h2>
<p>Registration will be opening as soon as we put this site up! Admissions will be based on a nothing, everyone is welcome. If you’re accepted, you’ll promise to attend so we know how much food to order for everyone.</p>
</div>
<div class="col-sm-4">
<h2>Does this cost money?</h2>
<p>Nope! Admission is free and includes meals, drinks, snacks, overnight hosting, workshops, swag, and a memorable experience (if we do say so ourselves)!</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<h2>What will I eat?</h2>
<p>There's dining... JK We’ll provide food for all meals from Saturday’s breakfast to Sunday’s lunch. If you have dietary restrictions, we’ll try our best to accommodate them. Of course, we’ll also have an abundance of snacks throughout the hacking period.</p>
</div>
<div class="col-sm-4">
<h2>Where will I sleep?</h2>
<p>Hacking all night is fun, but you can also get some rest when you need it! Preferably in your room, but you can also sleep in ours if you would like, we have extra space for a sleepover. 😴😴😴</p>
</div>
<div class="col-sm-4">
<h2>How do I get there?</h2>
<p>Go to any elevator, press (1). Walk to MPR. Alternatively, you can also walk down to the MPR through any of our wacky and wonderful stairs.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<h2>What should I bring?</h2>
<p>Bring a valid student ID and laptop for hacking. We’ll provide pretty much everything else — food and breathing air! If you like to be comfy, you can bring a blanket, pillow, and towel.</p>
</div>
<div class="col-sm-4">
<h2>How do teams work?</h2>
<p>Teams are at most 3 people. You can select teammates when you register, or you can register individually without specified teammates. Rest assured you’ll be able to hack with your friends if that’s what you prefer!</p>
</div>
<div class="col-sm-4">
<h2>What if I don’t have a team?</h2>
<p>If you don’t have a team now, that’s okay! If you prefer to work by yourself, that's fine too. If you prefer a team, we can help you find a tea. EZPZ</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<h2>Is this really happening?</h2>
<p>You bet! Sorry we've been a little busy in setting this up, but it should definitely be fun! Come join us.</p>
</div>
<div class="col-sm-4">
<h2>Is there an admissions puzzle again?</h2>
<p>Yes, please solve the puzzle <a style="color: #e74c3c" href="http://www.websudoku.com/">here</a>. You'll get extra things of wonderful nature.</p>
</div>
<div class="col-sm-4">
<h2>What if this FAQ didn’t answer my questions?</h2>
<p>Please email us at <a style="color: #e74c3c" href="mailto:[email protected]?Subject=Help%20Me" target="_top">[email protected]</a> if you’re in any way confused or concerned! We’d love to help you out :)</p>
</div>
</div>
<br><br><br><br><br>
</div>
<div id="registerDiv" class="container-fluid bg-3 text-center register">
<div class="row">
<div class="col-sm-12 content">
<h1>REGISTER</h1>
<p>If you plan to attend, please help us out by filling out <a href="https://goo.gl/forms/C9JDpYpFX4SJIz6q2">this Google form</a>. We even provided a nice QR code for you.</p>
<img src="pics/qr.png">
<br>
<br>
</div>
</div>
</div>
<div id="prizeDiv" class="container-fluid bg-3 text-center prize">
<div class="heading">
<h1>PRIZES</h1>
</div>
<br>
<div class="row">
<div class="col-sm-6">
<img src="pics/first.jpg">
</div>
<div class="col-sm-6">
<img src="pics/second.jpg">
</div>
</div>
<div class="row">
<div class="col-sm-6">
<img src="pics/third.jpg">
</div>
<div class="col-sm-6">
<img src="pics/fourth.jpg">
</div>
</div>
<br><br><br><br><br>
</div>
<div class="container-fluid bg-3 text-center ending">
<div style="margin-top: 70px" class="row">
<div class="col-sm-6 content">
<img src="pics/duck.png">
</div>
<div class="col-sm-6 content">
<img src="pics/simmons.png">
</div>
</div>
<div class="row">
<div style="margin-bottom: 40px" class="col-sm-12 content">
<h1> S I M H A C K </h1>
<p> DECEMBER 3-4 // 2016 </p>
</div>
</div>
</div>
<footer class="container-fluid text-center footer">
<div class="row">
<div style = "background: #FC5454;" class="col-sm-2 content"></div>
<div style = "background: #4ECDC4;" class="col-sm-2 content"></div>
<div style = "background: #FFE86B; padding-top: 13px; " class="col-sm-4 content">*Template inspired by HackMIT</div>
<div style = "background: #C9D41B;" class="col-sm-2 content"></div>
<div style = "background: #FFBC29;" class="col-sm-2 content"></div>
</div>
</footer>
</body>
</html>