-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
executable file
·520 lines (478 loc) · 21.8 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
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
509
510
511
512
513
514
515
516
517
518
519
520
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Oakton Computer Science & Cyber Security Club</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index_style.css">
<link rel="icon" href="/img/favicon.png" type="image/png" />
<style media="screen">
nav {
height: 8%;
}
.adj
{
position:relative;
right:45%;
}
.align {
vertical-align: middle;
}
.section
{
min-height: 100%;
}
body,html
{
height: 100%;
width: 100%;
}
#fullpage
{
height: 100%;
width:100%;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgba(51, 51, 51, .7);
position: fixed;
top: 0;
width: 100%;
z-index: 2;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-family: BasicSans-Light;
}
li a:hover:not(.active) {
background-color: rgba(51, 51, 51, .8);
}
.active {
background-color: #4CAF50;
}
.footer {
position: relative;
left: 0;
bottom: 42px;
width: 100%;
height: 30px;
background-color: rgba(51, 51, 51, .8);
color: white;
text-align: center;
z-index: 2;
}
h1
{
font-family: BasicSans-Regular;
}
h2
{
font-family: BasicSans-Light;
}
h3
{
font-family: BasicSans-Regular;
}
h4
{
font-family: BasicSans-Thin;
}
h5
{
font-family: BasicSans-Regular;
transform: translateY(25%);
font-size: 100%;
}
p
{
font-family: BasicSans-Light;
}
@font-face
{
font-family: BasicSans-Regular;
src: url("fonts/BasicSans-Regular.otf") format("opentype");
}
@font-face
{
font-family: BasicSans-Light;
src: url("fonts/BasicSans-Light.otf") format("opentype");
}
@font-face
{
font-family: BasicSans-Thin;
src: url("fonts/BasicSans-Thin.otf") format("opentype");
}
</style>
</head>
<body>
<div id="fullpage">
<ul>
<li><a class="smooth-goto" href="#home">Home</a></li>
<li><a class="smooth-goto" href="#updates">Updates</a></li>
<li><a class="smooth-goto" href="#competitions">Competitions</a></li>
<li><a class="smooth-goto" href="#activities">Activities</a></li>
<li><a class="smooth-goto" href="#contact">Contact</a></li>
<li><a href="http://oakcsclub.win/lau">Lau Board</a></li>
</ul>
<section class="section" style="background-color:#00A6FB;color:white;" id="home">
<div style="padding:2rem;margin:2rem">
<center>
<h1 class="title">Oakton Computer Science/Cyber Club</h1>
</center>
<br/>
<center>
<i class="title material-icons">polymer</i>
</center>
</div>
<div style="background-color:#0582CA;max-width:100%;padding:1rem;margin:3rem;">
<center>
<br>
<h1>Next Meeting: Dec 14th</h1>
<h4 class="words" style="color:#ECECEC">
Location: Online
<br>
Time: 1:00pm - 2:00pm
<br>
</h4>
<br>
</center>
</section>
<section class="section" style="background-color:#42A5F5;" id="updates">
<nav>
<center class="purple nav-wrapper">
<h3>Updates</h3>
</center>
</nav>
<br/><br/>
<!--News Updates-->
<div class="container">
<div class="row">
<div class="col s6 m6">
<div class="card z-depth-3">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="Join the club" height="400" src="http://www.centroriparazionicnc.it/modules/jmsblog/views/img/5aea056acf589e2faa67d7818ffcf1bf.jpg"/>
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">
<a href="https://forms.gle/j2FbZHnw2m4o2KcN9" target="_blank" style="color:#8C00B2">Interested in joining? Sign up! <i class="material-icons align padding">open_in_new</i></a>
</span>
<p>
This form will add you to our mailing list so you will receive updates for meetings and events! Remember to also join our discord!
</p>
</div>
</div>
</div>
<div class="col s6 m6">
<div class="card z-depth-3">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="Join the Discord" height="300" src="https://www.tf2stadium.com/assets/img/logos/discord-logo-blurple.svg"/>
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">
<a href="https://discord.gg/T2menys" target="_blank" style="color:#8C00B2">Club Discord Server <i class="material-icons align padding">open_in_new</i></a>
</span>
<p>
Join our Discord server!
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Discord Server<i class="material-icons material-icons align">close</i></span>
<p>
Reminder: Change your server nickname to your first name and last initial after joining.
</p>
</div>
</div>
</div>
<!--<div class="col s12 m4">
<div class="card z-depth-3">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="Sign Up" height="250" src="https://luna1.co/4f9b6f.png"/>
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">
<a href="https://goo.gl/forms/V7JdODIUINxXRC512" target="_blank" style="color:#8C00B2">Committee Sign-Up form <i class="material-icons align padding">open_in_new</i></a>
</span>
<p>
Please fill out the committee sign-up form here.
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Club Committees<i class="material-icons align padding">close</i></span>
<p>
You can choose however many committees you would like, but we recommend limiting it to 2.
Additionally, commmittees will be using Discord to communicate, so create an account if you haven't already.
</p>
</div>
</div>
</div>-->
<!--<div class="col s12 m4">
<div class="card z-depth-3">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="Join the group!" height="250" src="https://www.facebook.com/images/fb_icon_325x325.png"/>
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">
<a href="https://www.facebook.com/groups/549110601903758" style="color:#8C00B2">Join the Facebook group! <i class="material-icons align padding">open_in_new</i></a>
</span>
<p>Updates and discussion will be posted regularly on our Facebook group.</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Follow us!<i class="material-icons align padding">close</i></span>
<p>
Join the Facebook to talk to club members, officers, and discuss upcoming meetings or topics!
</p>
</div>
</div>
</div>-->
</div>
</div>
</section>
<section class="section" style="background-color:#90CAF9;" id="competitions">
<nav>
<center class="orange nav-wrapper">
<h3>Competitions</h3>
</center>
</nav>
<br/><br/>
<div class="container">
<div class="row">
<div class="col s12">
<div class="card horizontal">
<div class="card-image">
<img alt="Contest" src="https://www.roberthalf.com.hk/sites/roberthalf.com.hk/files/best-programming-language-sg.jpg">
<span class="card-title blue">ACSL</span>
</div>
<div class="card-content">
<p>
We participate in the <a href="http://www.acsl.org/" target="_blank">American Computer Science League!</a>
<br /><br />
ACSL is a yearly contest that consists of a set of 4 contests covering both computer science theory and problem solving skills. Each contest has a written portion and a programming portion, and the latter can be solved in any language you want. You can participate in the Junior, Intermediate, or Senior leagues.
<br><br>
Practice for the contests can be found
<a href="https://drive.google.com/open?id=0B6gu4YCPzMNdfkNJdzMtcmlac3JtUG4zcjJ2dU10eUE3OWgtdHJvZGgxOEQ2WV9xTllQb1E" target="_blank"><b>here</b></a>
<br><br>
<b>Contest Dates:</b> <br>
Contest #1: Friday, December 21, 2018 <br>
Contest #2: Friday, February 1, 2019 <br>
Contest #3: Friday, March 8, 2019 <br>
Contest #4: Friday, April 19, 2019 <br>
All-Star Contest: Saturday, May 25, 2018 (Memorial day weekend)
</p>
</div>
</div>
</div>
<div class="col s12">
<div class="card horizontal">
<div class="card-image">
<img alt="Contest" src="https://2.bp.blogspot.com/-yMPObT9xESw/Uw-Z7GN7_3I/AAAAAAAADVw/Xv0f40OVo_k/s1600/CyberPatriot.jpg">
<span class="card-title blue">CyberPatriot</span>
</div>
<div class="card-content">
<p>
We participate in <a href="https://www.uscyberpatriot.org/" target="_blank">CyberPatriot</a>
<br /><br />
CyberPatriot is a systems administration competition involving cybersecurity and networking. People of all experience levels are welcome to participate.
We will practice a lot and we reccomend that everyone shows up for the practice. Additionally, We have our first cyberpatriot competition on October 25th in
Mr. Larson's room. If you have signed up and cannot attend, please provide a valid excuse. Join and check the discord server for any last minute updates.
<br><br>
Sign up
<a href="https://forms.gle/dKmVPfqwxs5JnBmj7" target="_blank"><b>here</b></a>, ASAP. Spots go fast!
<br><br>
<a href="https://www.uscyberpatriot.org/Pages/Competition/Competition-Timeline.aspx">Contest Dates</a> <br>
</p>
</div>
</div>
</div>
<div class="col s12">
<div class="card horizontal">
<div class="card-image">
<img alt="USACO" src="http://www.usaco.org/current/images/usaco_logo.png">
<span class="card-title blue">USA Computing Olympiad</span>
</div>
<div class="card-content">
<p>
<a style="color:limegreen">
<b>GET STARTED BY CREATING AN ACCOUNT <a href="http://www.usaco.org/index.php?page=register" target="_blank">HERE</a></b> </a>
<br><br>
USACO is a set of contests split into Bronze, Silver, Gold, and Platinum divisions, where you start at Bronze and automatically get promoted up as you solve problems. These problems get VERY hard, and focus on performance. You also get a strict time limit to solve them. USACO is also free to participate in, and you only need to create an account online to start.
<br><br>
The first contest is from December 15-18, 2018.
<br><br>
Visit their website <a href="http://www.usaco.org/" target="_blank"> here</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" style="background-color:#64B5F6" id="activities">
<nav>
<center class="green nav-wrapper">
<h3>Activities</h3>
</center>
</nav>
<br/><br/>
<div class="container">
<div class="row">
<div class="col s12 m4">
<div class="card z-depth-3">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="Presentation" src="https://www.galchimia.com/wp-content/uploads/2018/03/how-to-crash-your-own-presentation-1024x787.jpg">
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">Lectures </span><i class="material-icons align padding">open_in_new</i>
<p>Knowledge worth sharing.</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Officer and Member Lectures<i class="material-icons align padding">close</i></span>
<p>Want to share what you know with others? <a href="#contact">Contact us</a></p>
</div>
</div>
</div>
<div class="col s12 m4">
<div class="card z-depth-3">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="Providing Help" src="https://media.istockphoto.com/vectors/help-vector-id485305792?k=6&m=485305792&s=612x612&w=0&h=0rn4R7ZEiacn21lzkg0r4IkYnWwyog3zbv2zDnBP8ew=">
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">Volunteer </span><i class="material-icons align padding">open_in_new</i>
<p>We love helping others!</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">Supporting our friends<i class="material-icons align padding">close</i></span>
<p>
For example, we helped to add functionalities to the website of <a href="http://www.optimistclubofgreatervienna.org/" target="_blank">Optimistic Club</a>
<br /><br />
If you, non-profit individual or orgnization, would like some help, check out the <a href="#contact">contact information</a>
</p>
</div>
</div>
</div>
<div class="col s12 m4">
<div class="card z-depth-3">
<div class="card-image waves-effect waves-block waves-light">
<img src="https://i.imgur.com/ma4T2wv.jpg">
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">Guest Speakers </span><i class="material-icons align padding">open_in_new</i>
<p>How to use Comuper Science in the real world.</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">ComSci + Life<i class="material-icons align padding">close</i></span>
<p>Learn how we can use Computer Science in everyday life and prepare ourselves for the future</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section" style="background-color:#BBDEFB;" id="contact">
<nav>
<center class="red nav-wrapper">
<h3>Contact</h3>
</center>
</nav>
<br/><br/>
<div class="container">
<div class="row">
<div class="col s12 m4">
<div class="card z-depth-3">
<a href="mailto:hello@oakcsclub.win">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="e-mail" src="https://material-design.storage.googleapis.com/publish/material_v_9/0Bx4BSt6jniD7dzR3OXp5U1UtOEE/style_logos_product_intro_material_material.png">
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">Email</span><i class="material-icons align">open_in_new</i>
<p>hello@oakcsclub.win</p>
</div>
</a>
</div>
</div>
<div class="col s12 m4">
<div class="card z-depth-3">
<a href="https://github.com/oaktoncsclub" target="_blank">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="GitHub" src="https://github.com/apple-touch-icon-180x180.png">
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">GitHub</span><i class="material-icons align padding">open_in_new</i>
<p>Open a new issue in the project</p>
</div>
</a>
</div>
</div>
<!-- <div class="col s12 m4">
<div class="card z-depth-3">
<a href="https://gitter.im/oaktoncsclub/public" target="_blank">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" alt="Gitter" src="https://pbs.twimg.com/profile_images/618764430877200384/snuL_nre_400x400.png">
</div>
<div class="card-content activator">
<span class="card-title activator grey-text text-darken-4">Gitter</span><i class="material-icons align padding">open_in_new</i>
<p>Tell us about what you think</p>
</div>
</a>
</div>
</div>
</div>-->
</div>
</section>
<div class="footer">
<h5>
<a href="https://discord.gg/W8GkXur" target="_blank" style="color:#ECECEC">Discord</a> |
<a href="https://github.com/oaktoncsclub" target="_blank" style="color:#ECECEC">GitHub</a> |
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeNXGDHo3SLnhFwVbjuKFHmBox7AF39jRnD6sZcojwmKzIMVw/viewform?vc=0&c=0&w=1" target="_blank" style="color:#ECECEC">Email List</a> |
<a href="/members/officers.html" target="_blank" style="color:#ECECEC">Officers</a>
</h5>
</div>
</div>
<!--<div class="fixed-action-btn" style="bottom: 40px; right: 24px;">
<a class="btn-floating btn-large red">
<i class="large material-icons align">launch</i>
</a>
<ul>
<li>
<a href="members.html" class="btn-floating red"><i class="material-icons align padding">dashboard</i></a>
</li>
<li>
<a href="https://discord.gg/W8GkXur" class="btn-floating yellow darken-1"><i class="material-icons align padding">message</i></a>
</li>
<li>
<a href="https://www.facebook.com/groups/549110601903758/" target="_blank" class="btn-floating green"><i class="material-icons align padding">group_work</i></a>
</li>
<li>
<a href="https://github.com/oaktoncsclub" target="_blank" class="btn-floating blue"><i class="material-icons align padding">polymer</i></a>
</li>
</ul>
</div>-->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.8.4/vendors/jquery.easings.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.8.4/vendors/scrolloverflow.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js"></script>
<script src="https://cdn.jsdelivr.net/scrollreveal.js/3.3.1/scrollreveal.min.js"></script>
<script>
window.sr = ScrollReveal();
sr.reveal('.title', 400);
sr.reveal('.words', {delay: 500});
sr.reveal('.down1', {delay: 700});
</script>
<script type="text/javascript">
$('.smooth-goto').on('click', function() {
$('html, body').animate({scrollTop: $(this.hash).offset().top - 50}, 500);
return false;
});
</script>
</body>
</html>