-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
489 lines (390 loc) · 14 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- title tag -->
<title>Isohack 2.O</title>
<!-- Bootstrap 4 CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Css Files -->
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./scrollbar.css" />
<style>
body {
text-align: center;
}
/* Temporary Style */
header.navbar_section {
height: 120px;
background-color: darkgray;
}
section.headline_home {
height: 350px;
background-color: lightblue;
}
section.about_section {
height: 350px;
background-color: rebeccapurple;
}
section.previous_year_event {
height: 350px;
background-color: darkcyan;
}
section.examples_section {
height: 350px;
background-color: darkolivegreen;
}
section.faq_section {
height: auto;
background-color: white;
}
.faq_questions
{
font-family:"fQTrebuchet MS", Arial, Helvetica, sans-serif;
font-size: 16px;
text-align:left;
color:#1086e8;
}
a.faq_questions:hover
{
color:#75d5fd;
}
.faq_subtitle
{
font-family:Georgia, "Times New Roman", Times, serif;
font-size: 16px;
}
.faq_div {
text-align:center;
display:inline-block;
border:5px solid #1086e8;
width:300px;
top:150px;
border-radius:20px;
left:50%;
margin: -50px 0 0 -150px;
animation: border-flicker 2s linear infinite;
}
.faq_head_flick {
color:#FF00E6 ;
font-family: 'Raleway', sans-serif;
font-size:28px;
letter-spacing:10px;
animation: text-flicker 3s linear infinite;
}
#offset {
animation: letter-flicker 2s linear infinite;
}
@keyframes text-flicker {
0% {
opacity:0.1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
2% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
8% {
opacity:0.1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
9% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
12% {
opacity:0.1;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
20% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
}
25% {
opacity:0.3;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
}
30% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
}
70% {
opacity:0.7;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
}
72% {
opacity:0.2;
text-shadow:0px 0px 29px rgba(242, 22, 22, 1)
}
77% {
opacity:.9;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
}
100% {
opacity:.9;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
}
}
@keyframes border-flicker {
0% {
opacity:0.1;
-webkit-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
-moz-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
}
2% {
opacity:1;
-webkit-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
-moz-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
}
4% {
opacity:0.1;
-webkit-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
-moz-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
}
8% {
opacity:1;
-webkit-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
-moz-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
}
70% {
opacity:0.7;
-webkit-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
-moz-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
}
100% {
opacity:1;
-webkit-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
-moz-box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
box-shadow: 0px 0px 78px 4px rgba(16,134,232,0.73);
}
}
@keyframes letter-flicker {
0% {
opacity:0.1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
2% {
opacity:0.1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
4% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
19% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
21% {
opacity:0.1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
23% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
80% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
83% {
opacity:0.4;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
87% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
}
.faq_answer
{
font-family: "Trebuchet MS", Arial, Verdana;
background-color: #33ccff;
font-weight: bold;
background-image: linear-gradient(45deg, #33ccff, #b7002d);
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}
.faq_Q
{
color:#c20cb0 ;
font-size:24px;
}
.faq_A
font-size:18px;
color:#0ffbf9;
float:left;
background-color:#212529;
}
section.sponsors_section {
height: 350px;
background-color: grey;
}
footer.footer_section {
height: 100px;
background-color: darkslateblue;
}
</style>
</head>
<body>
<!-- Scrollbar Section -->
<aside id="scroll_bar">
<p class="pt-2">
<a href="#navbar_section" id="home_bar" class="scrollbar_link" onclick="scrollToSec(this.id)">
<span>00</span> <span>Home</span>
</a>
</p>
<p class="pt-2">
<a href="#about_section" id="about_bar" class="scrollbar_link" onclick="scrollToSec(this.id)">
<span>01</span> <span>About Us</span>
</a>
</p>
<p class="pt-2">
<a href="#previous_year_event" id="previous_year_bar" class="scrollbar_link" onclick="scrollToSec(this.id)">
<span>02</span> <span>Isohack 1.O</span>
</a>
</p>
<p class="pt-2">
<a href="#examples_section" id="examples_bar" class="scrollbar_link" onclick="scrollToSec(this.id)">
<span>03</span> <span>Examples</span>
</a>
</p>
<p class="pt-2">
<a href="#faq_section" id="faqs_bar" class="scrollbar_link" onclick="scrollToSec(this.id)">
<span>04</span> <span>FAQs</span>
</a>
</p>
<p class="pt-2">
<a href="#sponsors_section" id="sponsors_bar" class="scrollbar_link" onclick="scrollToSec(this.id)">
<span>05</span> <span>Sponsors</span>
</a>
</p>
</aside>
<!-- Navbar Section -->
<header class="navbar_section" id="navbar_section">
<h3>Navbar Section</h3>
</header>
<!-- Headline Home Section -->
<section class="headline_home" id="headline_section">
<h3>Headline, Deadline Home Section</h3>
</section>
<!-- About Section -->
<section class="about_section" id="about_section">
<h3>About Section</h3>
</section>
<!-- Previous Year Event Section -->
<section class="previous_year_event" id="previous_year_event">
<h3>Previous Year Event Section</h3>
</section>
<!-- Examples Section (What we want and Type of Projects) -->
<section class="examples_section" id="examples_section">
<h3>Examples (What we want, Type of Projects) Section</h3>
</section>
<!-- FAQs Section -->
<section class="faq_section" id="faq_section">
<h3>FAQ Section</h3>
</section>
<!-- Sponsors Section -->
<section class="sponsors_section" id="sponsors_section">
<!-- FAQs Section -->
<section class="faq_section">
<!-- Inbuilt Javascript Libraries -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css" />
<table border="0" id="faq_Table" class="table table-dark">
<tr>
<th></th>
<th>
<div class="faq_div" id="text">
<span class="faq_head_flick"> F<span id="offset">A</span>Q's</span>
</div>
</th>
</tr>
<tr align="left">
<th class="faq_Q">Q . </th>
<th>
<a class="faq_questions" data-toggle="collapse" href="#Faq_Question1" role="button" aria-expanded="false" aria-controls="collapseExample "> HOW DO I ACTIVATE MY ACCOUNT? </a>
</th>
</tr>
<tr align="left">
<td colspan="2"><div data-parent="#faq_Table" class="collapse" id="Faq_Question1">
<div class="card card-body" ><span class="faq_answer"> The instructions to activate your account will be sent to your email once you have submitted the registration form. If you did not receive this email, your email service provider’s mailing software may be blocking it. You can try checking your junk / spam folder or contact us at [email protected]</span> </div> </div>
</td>
</tr>
<tr align="left">
<th class="faq_Q">Q . </th>
<th> <a class="faq_questions" data-toggle="collapse" href="#Faq_Question2" role="button" aria-expanded="false" aria-controls="collapseExample"> WHY MUST I MAKE PAYMENT IMMEDIATELY AT CHECKOUT? </a> </th>
</tr>
<tr align="left">
<td colspan="2" ><div data-parent="#faq_Table" class="collapse" id="Faq_Question2">
<div class="card card-body"><span class="faq_answer">
Sample ordering is on ‘first-come-first-served’ basis. To ensure that you get your desired samples, it is recommended that you make your payment within 60 minutes of checking out. </span></div>
</td>
</tr>
<tr align="left">
<th class="faq_Q">Q . </th>
<th> <a class="faq_questions" data-toggle="collapse" href="#Faq_Question3" role="button" aria-expanded="false" aria-controls="collapseExample"> HOW CAN I TRACK MY ORDERS & PAYMENT? </a> </th>
</tr align="left">
<tr align="left">
<td colspan="2" ><div data-parent="#faq_Table" class="collapse" id="Faq_Question3">
<div class="card card-body"><p class="faq_answer"> After logging into your account, the status of your checkout history can be found under Order History. For orders via registered postage, a tracking number (article tracking number) will be given to you after the receipt given from Singapore Post Limited (SingPost). </p></div>
</div></td>
</tr>
<tr align="left">
<th class="faq_Q">Q . </th>
<th> <a class="faq_questions" data-toggle="collapse" href="#Faq_Question4" role="button" aria-expanded="false" aria-controls= "collapseExample"> HOW DO I CANCEL MY ORDERS BEFORE I MAKE A PAYMENT? </a> </th>
</tr>
<tr align="left">
<td colspan="2"><div data-parent="#faq_Table" class="collapse" id="Faq_Question4">
<div class="card card-body" ><p class="faq_answer"> After logging into your account, go to your Shopping Cart. Here, you will be able to make payment or cancel your order. Note: We cannot give refunds once payment is verified.</p> </div>
</div></td>
</tr>
<tr align="left">
<th class="faq_Q">Q . </th>
<th> <a class="faq_questions" data-toggle="collapse" href="#Faq_Question5" role="button" aria-expanded="false" aria-controls="collapseExample"> WHAT IS THE ACCUMULATED DELIVERY FEE FOR? HOW MUCH IS THE HANDLING FEE? </a> </th>
</tr>
<tr align="left">
<td colspan="2" ><div data-parent="#faq_Table" class="collapse" id="Faq_Question5">
<div class="card card-body" ><p class="faq_answer"> The flat-rate handling fee is S$5.99 and it is only applicable to normal samples. For free samples, they are fully paid for and there are no additional charges to deliver the free samples.</p> </div>
</div></td>
</tr>
</table>
</section>
<!-- Sponsors Section -->
<section class="sponsors_section">
<h3>Sponsors Section</h3>
</section>
<!-- Footer -->
<footer class="footer_section">
<h3>Footer</h3>
</footer>
<!-- Inbuilt Javascript Libraries -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<!-- Custom Script -->
<script src="./scrollbar.js" defer></script>
</body>
</html>