-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
935 lines (835 loc) · 38 KB
/
index.html
File metadata and controls
935 lines (835 loc) · 38 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
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
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hacktrec 2k17</title>
<link rel="shortcut icon" href="img/icon.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Allerta+Stencil">
<link href="https://fonts.googleapis.com/css?family=Nunito:400,700|Barrio" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed|Arapey|Archivo+Black|Elsie+Swash+Caps|Playfair+Display|Anton|Rubik|Teko:600|Sacramento|Abril+Fatface|Cormorant+Garamond|Neucha|Unica+One|Old+Standard+TT" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link href='https://fonts.googleapis.com/css?family=Unica One' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Arapey" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/lettereffect.css" />
<link rel="stylesheet" type="text/css" href="css/slick-theme.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<link rel="stylesheet" type="text/css" href="css/team_icons.css" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" type="text/css" href="css/component2.css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script>
document.documentElement.className = 'js';
</script>
<script src="js/segment.min.js"></script>
<script src="js/d3-ease.v0.6.js"></script>
<script src="js/letters.js"></script><script src="js/modernizr.custom.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
</script>
<script >
$(document).ready(function(){
$("#show_dropdown").hide();
$("#click_dropdown").click(function(){
$("#show_dropdown").toggle();
});
});
</script>
<style type="text/css">
.body-1 {
font-family: 'Nunito', monospace;
color: #fff;
background-color: #001a33;
min-height: 100vh;
}
main {
position: relative;
width: 100%;
}
.rubik {
font-family: 'Nunito', monospace;
font-weight: 400;
}
.neucha {
font-family: 'Neucha', serif;
}
.content {
position: relative;
display: grid;
align-content: center;
height: 100vh;
overflow: hidden;
min-height: 650px;
}
.content--layout {
grid-template-columns: 100%;
padding: 3em 0;
}
.demo-crossword {
color: #fff;
background-color: #001a33;
}
hr{
color: #2D2D2D;
border-color: #2D2D2D;
border-style: solid;
}
/* Common styles for the words */
.word {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
margin: 0;
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
@media screen and (max-width: 50em) {
html, .body-1 {
overflow-x: hidden;
width: 100vw;
height: 100%;
}
.content {
height: auto;
min-height: 0;
}
.content--layout {
overflow: visible;
}
}
.word--crossword {
font-size: 14vh;
font-family: 'Barrio', serif;
font-weight: 400;
text-transform: uppercase;
color: #fff;
line-height: 0.9;
margin: 0;
display: grid;
grid-template-columns: repeat(auto-fit, 0.65em);
}
.word--crossword span {
text-align: center;
display: block;
}
.word__cross {
pointer-events: none;
color: #000d1a;
}
.word__cross span {
opacity: 0;
}
.allerta {
font-family: "Allerta Stencil", Sans-serif;
}
.background{
background-image: url("./img/poster.jpg");
width: 100%;
max-height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
@-webkit-keyframes rotateLoader {
to {
-webkit-transform: rotate3d(0, 0, 1, 360deg);
transform: rotate3d(0, 0, 1, 360deg);
}
}
@keyframes rotateLoader {
to {
-webkit-transform: rotate3d(0, 0, 1, 360deg);
transform: rotate3d(0, 0, 1, 360deg);
}
}
/* Content */
.content-letter-style {
position: relative;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
height: 100vh;
}
.content--c7 {
color: #fff;
cursor:default;
}
.slideshow,.slide {
position: relative;
width: 100%;
height: 100%;
}
.slide {
padding: 0 6vw;
}
.actions {
position: absolute;
right: 6vw;
bottom: 60px;
text-align: center;
}
/* Text styles */
.title {
margin: 0;
font-size: 5vw;
position: relative;
}
.hover-effect:hover {
color: #000d1a;
}
.title--style-7 {
font-family: 'Neucha', serif;
font-size: 4vw;
font-weight: 400;
}
.btn {
font-size: 0.885em;
font-weight: normal;
display: inline-block;
margin: 0 auto;
padding: 0.5em 0;
cursor: pointer;
text-align: center;
letter-spacing: 2px;
text-transform: uppercase;
pointer-events: auto;
color: #fff;
border: 0;
background: none;
font-family: 'Roboto Condensed', Avenir, sans-serif;
-webkit-transition: opacity 0.2s;
transition: opacity 0.2s;
}
.no-js .actions {
display: none;
}
.js .content-letter-style {
overflow: hidden;
}
.js .slide {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.js .slide:not(.slide--current) {
position: absolute;
top: 0;
pointer-events: none;
opacity: 0;
}
.btn:focus {
outline: none;
}
.btn:hover {
opacity: 0.5;
}
.btn--trigger{
margin: 0 0.5em;
border-bottom: 1px solid;
}
.btn--prev {
margin: 0 1.5em 0 0.5em;
}
.actions {
position: absolute;
right: 6vw;
bottom: 60px;
text-align: center;
}
@media screen and (max-width:60em) {
.content {
height: calc(100vh - 124px);
}
}
.decoline {
position: absolute;
}
.slick-img{
display: block;
max-height: 20vh;
max-width: 10vw;
width: auto;
height: auto;
}
.sponsor-btn {
border: none;
font-family: inherit;
font-size: inherit;
color: inherit;
background: none;
cursor: pointer;
padding: 25px 80px;
display: inline-block;
margin: 15px 30px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
outline: none;
position: relative;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.btn:after {
content: '';
position: absolute;
z-index: -1;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Pseudo elements for icons */
.btn:before{
font-family: 'icomoon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
position: relative;
-webkit-font-smoothing: antialiased;
}
.btn-6 {
color: #fff;
background: #000d1a;
-webkit-transition: none;
-moz-transition: none;
transition: none;
}
.btn-6:active {
top: 2px;
}
.btn-6e {
border: 2px dashed #000d1a;
border-radius: 15px;
}
.btn-6e:hover {
background: transparent;
color: #000d1a;
}
.sponsor-btn span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.sponsor-btn span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.sponsor-btn:hover span {
padding-right: 25px;
}
.sponsor-btn:hover span:after {
opacity: 1;
right: 0;
}
.unica-one{
font-family: 'Unica One';
}
.sm {
max-width:100vw;
}
</style>
</head>
<body class="demo-1">
<div class="nbs unica-one " >
<a href="#hacktrec-info" class=" nb nbi nbsb4"><i class="fa fa-question"></i> <span class="w3-xlarge">What is hack-TREC</span></a>
<a href="#register" class="nb nbi nbsb3"><i class="fa fa-pencil"></i><span class="w3-xlarge">Register</span></a>
<a href="#sponsors" class="nb nbi nbsb2"><i class="fa fa-users"></i><span class="w3-xlarge">Sponsors</span></a>
<a href="#contact" class="nb nbi nbsb1"><i class="fa fa-phone"></i><span class="w3-xlarge">Contact</span></a>
<a class="nb nb-main"><i class="fa fa-angle-double-down"></i></a>
</div>
<div class="container">
<header class="codrops-header">
<div class="deco" style="" aria-hidden="true">o</div>
<img class="image-1 w3-hide-small w3-hide-medium" src="./img/hacktrec.png" style="width: 20%">
<img class="image-1 w3-hide-large w3-hide-medium" src="./img/hacktrec.png" style="width: 65%">
<img class="image-1 w3-hide-small w3-hide-large" src="./img/hacktrec.png" style="width: 40%">
</header>
<h2 class="w3-center allerta w3-text-white w3-hide-medium" style="font-size: 400%;margin-top: -30px;word-spacing: 4px">HackTREC 2K17</h2>
<p class="w3-center neucha w3-xlarge">1st- 2nd November</p>
<p class="w3-center neucha w3-xlarge"><a href="#sponsors" >
Sponsored by: Kura
</a></p>
<h2 class="w3-center allerta w3-text-white w3-hide-large w3-hide-small" style="font-size: 450%;margin-top: -10px;word-spacing: 4px">HackTREC 2K17</h2>
</div>
<div >
<div class="w3-hide-large w3-hide-medium w3-center" style="margin-top: ; padding-top: 7%;padding-bottom: 27%;background-color: #fff ">
<p class="w3-wide w3-text-black">START PACKING YOUR BAGS FOR THIS AWESOME ADVENTURE ON <span class="w3-text-blue"> 01-NOV-2017 (12 noon) and 02-NOV-2017 (4 PM) </span> @ ABES ENGG COLLEGE</p>
<p class="w3-wide w3-text-black" style="font-size:1.5em;">
</p>
<p class="w3-wide w3-text-black" style="font-size:1.5em;">
<!-- Payment details : <br> -->
Last day today to register online ! Fill out the google form now ! <br><br>
<a href="https://goo.gl/forms/7O0Lx6pHI9w9EJwc2" target="blank" class="w3-large w3-black w3-hover-light-grey w3-white w3-text-light-grey w3-wide w3-padding-large" style="text-decoration: none;margin-top: 0px;"> REGISTER </a>
<p style="font-size:1em;">
Fooding and Accomodation included
<b>Unlimited coffee</b> <br>
<i>Awesome Dev swag and stickers awaits all participants</i>
<br>Prizes for best female majority teams
</p>
<hr>
<p style="font-size:1em;">
For team size 1-3: Rs.100 per member
<hr>
For team of 4: Rs. 350 for the team<br>(you save Rs. 50)
<hr>
For team of 5: Rs. 400 for the team<br>(You save Rs. 100)
</p>
</p>
<br>
</div>
<div class="w3-hide-small w3-center" style=" padding-top: 7%;padding-bottom: 5%;background-color: #fff ">
<p class="w3-wide w3-text-black">START PACKING YOUR BAGS FOR THIS AWESOME ADVENTURE ON <span class="w3-text-blue"> 01-NOV-2017 (12 noon) and 02-NOV-2017 (4 PM) </span> @ ABES ENGG COLLEGE</p><br><br>
<p class="w3-wide w3-text-black" style="font-size:2em;">
<!-- Payment details : <br> -->
Last day today to register online ! Fill out the google form now ! <br>
<p style="font-size:1.5em;">
Fooding and Accomodation included <br>
<b>Unlimited coffee</b> <br>
<i>Awesome Dev swag and stickers awaits all participants</i>
<br>Prizes for best female majority teams
</p>
<p style="font-size:1.5em;">
For team size 1-3: Rs.100 per member
<br>
For team of 4: Rs. 350 for the team(you save Rs. 50)
<br>
For team of 5: Rs. 400 for the team(You save Rs. 100)
</p>
</p>
<br>
<a href="https://goo.gl/forms/7O0Lx6pHI9w9EJwc2" target="blank" class="w3-large w3-hover-grey w3-black w3-text-white w3-padding-large wow fadeInDown" data-wow-offset="300" style="text-decoration: none;margin-top: 0px;"> REGISTER </a>
</div>
</div>
<div id="hacktrec-info" class="w3-row body-1">
<div class="w3-col l6 w3-hide-small w3-hide-medium">
<div class=" demo-crossword ">
<main class="w3-margin-left">
<section class="content content--layout">
<h2 class="word word--crossword">
<span class="word__main" data-column="1" data-row="4">HACKTREC</span>
<span class="word__cross" data-column="1" data-row="4">Hope</span>
<span class="word__cross" data-column="2" data-row="1">Capable</span>
<span class="word__cross" data-column="3" data-row="2">Decide</span>
<span class="word__cross" data-column="4" data-row="4">keen</span>
<span class="word__cross" data-column="5" data-row="1">worth</span>
<span class="word__cross" data-column="6" data-row="1">aware</span>
<span class="word__cross" data-column="7" data-row="1">Invest</span>
<span class="word__cross" data-column="8" data-row="1">Success</span>
</h2>
</section>
</main>
</div>
</div>
<div class="w3-col l6 w3-hide-small w3-hide-large" style="margin-left: 25vw; margin-top: 15vh">
<div class=" demo-crossword ">
<main class="w3-margin-left">
<section class="content content--layout">
<h2 class="word word--crossword">
<span class="word__main" data-column="1" data-row="4">HACKTREC</span>
<span class="word__cross" data-column="1" data-row="4">Hope</span>
<span class="word__cross" data-column="2" data-row="1">Capable</span>
<span class="word__cross" data-column="3" data-row="2">decide</span>
<span class="word__cross" data-column="4" data-row="4">Keen</span>
<span class="word__cross" data-column="5" data-row="1">worth</span>
<span class="word__cross" data-column="6" data-row="1">aware</span>
<span class="word__cross" data-column="7" data-row="1">Invest</span>
<span class="word__cross" data-column="8" data-row="1">Success</span>
</h2>
</section>
</main>
</div>
</div>
<div class="w3-col l6" >
<div class="">
<section class="content-letter-style content--c7" >
<div class="slideshow slideshow--7" data-effect="fx7">
<div class="slide slide--current"><p class="title title--style-7"><span class="hover-effect">H</span><span class="hover-effect">a</span><span class="hover-effect">c</span><span class="hover-effect">k</span><span class="hover-effect">T</span><span class="hover-effect">R</span><span class="hover-effect">E</span><span class="hover-effect">C</span><span class="hover-effect"> i</span><span class="hover-effect">s</span><span class="hover-effect"> a</span><span class="hover-effect"> p</span><span class="hover-effect">l</span><span class="hover-effect">a</span><span class="hover-effect">c</span><span class="hover-effect">e</span><span class="hover-effect"> t</span><span class="hover-effect">o</span><span class="hover-effect"> i</span><span class="hover-effect">n</span><span class="hover-effect">n</span><span class="hover-effect">o</span><span class="hover-effect">v</span><span class="hover-effect">a</span><span class="hover-effect">t</span><span class="hover-effect">e</span><span class="hover-effect"> w</span><span class="hover-effect">i</span><span class="hover-effect">t</span><span class="hover-effect">h</span><span class="hover-effect">o</span><span class="hover-effect">u</span><span class="hover-effect">t</span><span class="hover-effect"> a</span><span class="hover-effect">n</span><span class="hover-effect">y</span><span class="hover-effect"> d</span><span class="hover-effect">i</span><span class="hover-effect">s</span><span class="hover-effect">t</span><span class="hover-effect">r</span><span class="hover-effect">a</span><span class="hover-effect">c</span><span class="hover-effect">t</span><span class="hover-effect">i</span><span class="hover-effect">o</span><span class="hover-effect">n</span><span class="hover-effect">s.</span></p></div>
<div class="slide"><h2 class="title title--style-7"><span class="hover-effect">Y</span><span class="hover-effect">o</span><span class="hover-effect">u</span><span class="hover-effect"> w</span><span class="hover-effect">i</span><span class="hover-effect">l</span><span class="hover-effect">l</span><span class="hover-effect"> h</span><span class="hover-effect">a</span><span class="hover-effect">v</span><span class="hover-effect">e</span><span class="hover-effect"> 3</span><span class="hover-effect">0</span><span class="hover-effect"> h</span><span class="hover-effect">o</span><span class="hover-effect">u</span><span class="hover-effect">r</span><span class="hover-effect">s</span><span class="hover-effect"> t</span><span class="hover-effect">o</span><span class="hover-effect"> d</span><span class="hover-effect">e</span><span class="hover-effect">l</span><span class="hover-effect">v</span><span class="hover-effect">e</span><span class="hover-effect"> i</span><span class="hover-effect">n</span><span class="hover-effect">t</span><span class="hover-effect">o</span><span class="hover-effect"> y</span><span class="hover-effect">o</span><span class="hover-effect">u</span><span class="hover-effect">r</span><span class="hover-effect"> c</span><span class="hover-effect">u</span><span class="hover-effect">r</span><span class="hover-effect">i</span><span class="hover-effect">o</span><span class="hover-effect">s</span><span class="hover-effect">i</span><span class="hover-effect">t</span><span class="hover-effect">i</span><span class="hover-effect">e</span><span class="hover-effect">s.</span></h2></div>
<div class="slide"><h2 class="title title--style-7"><span class="hover-effect">L</span><span class="hover-effect">e</span><span class="hover-effect">a</span><span class="hover-effect">r</span><span class="hover-effect">n</span><span class="hover-effect"> s</span><span class="hover-effect">o</span><span class="hover-effect">m</span><span class="hover-effect">e</span><span class="hover-effect">t</span><span class="hover-effect">h</span><span class="hover-effect">i</span><span class="hover-effect">n</span><span class="hover-effect">g</span><span class="hover-effect"> n</span><span class="hover-effect">e</span><span class="hover-effect">w,</span><span class="hover-effect"> a</span><span class="hover-effect">n</span><span class="hover-effect">d</span><span class="hover-effect"> m</span><span class="hover-effect">a</span><span class="hover-effect">k</span><span class="hover-effect">e</span><span class="hover-effect"> s</span><span class="hover-effect">o</span><span class="hover-effect">m</span><span class="hover-effect">e</span><span class="hover-effect">t</span><span class="hover-effect">h</span><span class="hover-effect">i</span><span class="hover-effect">n</span><span class="hover-effect">g</span><span class="hover-effect"> a</span><span class="hover-effect">w</span><span class="hover-effect">e</span><span class="hover-effect">s</span><span class="hover-effect">o</span><span class="hover-effect">m</span><span class="hover-effect">e.</span></h2></div>
<div class="slide"><h2 class="title title--style-7"><span class="hover-effect">M</span><span class="hover-effect">e</span><span class="hover-effect">e</span><span class="hover-effect">t</span><span class="hover-effect"> o</span><span class="hover-effect">t</span><span class="hover-effect">h</span><span class="hover-effect">e</span><span class="hover-effect">r</span><span class="hover-effect"> e</span><span class="hover-effect">n</span><span class="hover-effect">t</span><span class="hover-effect">h</span><span class="hover-effect">u</span><span class="hover-effect">s</span><span class="hover-effect">i</span><span class="hover-effect">a</span><span class="hover-effect">s</span><span class="hover-effect">t</span><span class="hover-effect">i</span><span class="hover-effect">c</span><span class="hover-effect"> h</span><span class="hover-effect">a</span><span class="hover-effect">c</span><span class="hover-effect">k</span><span class="hover-effect">e</span><span class="hover-effect">r</span><span class="hover-effect">s,</span><span class="hover-effect"> p</span><span class="hover-effect">u</span><span class="hover-effect">s</span><span class="hover-effect">h</span><span class="hover-effect"> y</span><span class="hover-effect">o</span><span class="hover-effect">u</span><span class="hover-effect">r</span><span class="hover-effect"> b</span><span class="hover-effect">o</span><span class="hover-effect">u</span><span class="hover-effect">n</span><span class="hover-effect">d</span><span class="hover-effect">a</span><span class="hover-effect">r</span><span class="hover-effect">i</span><span class="hover-effect">e</span><span class="hover-effect">s.</span> </h2></div>
<div class="slide"><h2 class="title title--style-7"><span class="hover-effect">R</span><span class="hover-effect">e</span><span class="hover-effect">a</span><span class="hover-effect">l</span><span class="hover-effect">i</span><span class="hover-effect">z</span><span class="hover-effect">e</span><span class="hover-effect"> t</span><span class="hover-effect">h</span><span class="hover-effect">e</span><span class="hover-effect"> p</span><span class="hover-effect">r</span><span class="hover-effect">o</span><span class="hover-effect">j</span><span class="hover-effect">e</span><span class="hover-effect">c</span><span class="hover-effect">t</span><span class="hover-effect">s</span><span class="hover-effect"> o</span><span class="hover-effect">f</span><span class="hover-effect"> y</span><span class="hover-effect">o</span><span class="hover-effect">u</span><span class="hover-effect">r</span><span class="hover-effect"> d</span><span class="hover-effect">r</span><span class="hover-effect">e</span><span class="hover-effect">a</span><span class="hover-effect">m</span><span class="hover-effect">s!</span> </h2></div>
<div class="slide"><h2 class="title title--style-7"><span class="hover-effect">S</span><span class="hover-effect">o,</span><span class="hover-effect"> w</span><span class="hover-effect">h</span><span class="hover-effect">a</span><span class="hover-effect">t</span><span class="hover-effect"> a</span><span class="hover-effect">r</span><span class="hover-effect">e</span><span class="hover-effect"> y</span><span class="hover-effect">o</span><span class="hover-effect">u</span><span class="hover-effect"> w</span><span class="hover-effect">a</span><span class="hover-effect">i</span><span class="hover-effect">t</span><span class="hover-effect">i</span><span class="hover-effect">n</span><span class="hover-effect">g</span><span class="hover-effect"> f</span><span class="hover-effect">o</span><span class="hover-effect">r?</span></h2></div>
</div>
<nav id="register" class="actions">
<button class="btn btn--trigger btn--prev">Previous</button>
<button class="btn btn--trigger btn--next">Next</button>
</nav>
</section><!-- /content -->
</div>
</div>
</div>
<!-- get the app-->
<div class="sw-row" style="padding-top: 5%;padding-bottom: 25%;background-color: #fff">
<hr style="margin-left: 5%;margin-right: 5%;">
<p style="text-transform: uppercase;font-size: 30px;text-align:center;letter-spacing: 4px" class="neucha">Keep Your Eyes on the</p>
<p style="text-transform: uppercase;font-size: 50px;text-align:center;margin-top: -2%;font-weight: 400;margin-bottom: -5% ;font-family: Avant Garde,Avantgarde,Century Gothic,CenturyGothic,AppleGothic,sans-serif;">Prize</p>
<div id="wrapper" class="wrapper sw-coll " >
<div class="front front-1">
<p class="p-1"><img style="cursor: pointer;" src="img/2nd-prize.png"/></p>
</div>
<div class="text_onclick-1 text_onclick" >
<p style="color: black">Prize for Software Winner</p>
</div>
</div>
<div id="wrapper-2" class="wrapper-2 sw-coll w3-hide-small">
<p>.</p>
<!-- <div class="front-2">
<p class="p-2"><img style="cursor: pointer;" src="img/1st-prize.png"/></p>
</div>
<div class="text_onclick-2 text_onclick" >
<p style="color: black">Hello</p>
</div> -->
</div>
<div id="wrapper-3" class="wrapper sw-coll" >
<div class="front front-3">
<p class="p-3"><img style="cursor: pointer;" src="img/3rd-prize.png"/></p>
</div>
<div class="text_onclick-3 text_onclick" >
<p style="color: black">Prize for Hardware Winner</p>
</div>
</div>
</div>
<div id="sponsors" class="" style="background: url('./img/background3.jpg'); padding-top: 15%;padding-bottom: 8%;margin-top: 0px;width: 100%">
<div class="">
<p class="w3-hide-large w3-hide-medium">.</p>
<h2 class="w3-hide-medium w3-hide-large neucha w3-text-white w3-xxxlarge w3-center" style="margin-top: 5vw;">
OUR SPONSORS
</h2>
<h2 class="w3-hide-small neucha w3-jumbo w3-text-white" style="position: absolute;left: 0px;margin-left: 10vh;">
OUR SPONSORS
</h2>
</div>
<div >
<div style="position: relative;overflow: hidden;width: 100%;">
<div class="deco deco--title"></div>
<div id="sponsor_slideshow" class="sponsor_slideshow">
<div class="sponsor_slide">
<h2 class="sponsor_slide__title sponsor_slide__title--preview">Kura India</h2>
<div class="sponsor_slide__item">
<div class="sponsor_slide__inner">
<img class="w3-hide-medium w3-hide-large sponsor_slide__img sponsor_slide__img--small" src="img/sponsor.gif" alt="Some image" />
<img class=" w3-hide-small sponsor_slide__img sponsor_slide__img--small" src="img/sponsor.jpg" alt="Some image" />
<button class="action action--open" aria-label="View details">+</button>
</div>
</div>
<div class="sponsor_slide__content">
<div class="sponsor_slide__content-scroller">
<img class="sponsor_slide__img sponsor_slide__img--large" src="img/sponsor.jpg" alt="Some image" />
<div class="w3-hide-small sponsor_slide__details">
<h2 class="sponsor_slide__title sponsor_slide__title--main">Kura India</h2>
<img src="img/company-1.JPG" class="sponsor_slide__description">
<img src="img/company-2.JPG" class="sponsor_slide__description">
<img src="img/company-3.JPG" class="sponsor_slide__description">
<img src="img/company-4.JPG" class="sponsor_slide__description">
</div>
<div class="w3-hide-large w3-hide-medium sponsor_slide__details">
<h2 class="sponsor_slide__title sponsor_slide__title--main">Kura India</h2>
<img src="img/small/1.png" class="sponsor_slide__description sm">
<img src="img/small/1 (1).png" class="sponsor_slide__description sm">
<img src="img/small/1 (2).png" class="sponsor_slide__description sm">
<img src="img/small/1 (3).png" class="sponsor_slide__description sm">
<img src="img/small/1 (4).png" class="sponsor_slide__description sm">
<img src="img/small/1 (5).png" class="sponsor_slide__description sm">
<img src="img/small/1 (6).png" class="sponsor_slide__description sm">
</div>
<span class="sponsor_slide__price sponsor_slide__price--large"></span>
<a href="" class="button button--buy" style="background-color: #fff"></a>
</div>
</div><!-- /slide__details -->
</div>
<button class="action action--close" aria-label="Close">x</i></button>
</div>
<div style="min-width:80vw;margin:auto auto;">
<img src="img/logo/devpost.png" style="max-height:25vh;" alt="">
<img src="img/logo/xcods.jpeg" style="max-height:25vh;" alt="">
<img src="img/logo/gitlab.svg" style="margin:4em;max-height:25vh;" alt="">
</div>
</div><!-- /container -->
</div>
</div>
<div style="background: url('./img/website3-2.jpg');width: 100%;padding-bottom: 40%; ">
</div>
<div class="w3-hide-small w3-hide-medium" style="background: url('./img/website5.jpg');padding-bottom: 40%;">
</div>
<div id="contact" class=" w3-display-container w3-opacity-min" style="background: url('./img/background1.jpg');min-height: 400px;background-attachment: fixed;background-position: center;background-repeat: no-repeat;background-size: cover;">
<div class="w3-display-middle">
<span class="unica-one w3-jumbo w3-text-white w3-wide">CONTACT</span>
</div>
</div>
<div style="background-color: #fff;padding-top: 2%;padding-bottom: 2%">
<h2 class="neucha w3-text-black w3-wide w3-xxxlarge" style="text-align: center">
OUR TEAM
</h2>
<hr style="margin-left: 5%;margin-right: 5%;">
<div class="w3-row icon-wrap icon-effect-5 icon-effect-5a" style="margin-left: 25vw">
<div class="w3-container w3-col m4" >
<p onclick="document.getElementById('id01').style.display='block'" ><i class="icon allerta fa fa-Ec">Event Coordiantor</i></p>
<p style="cursor: pointer;" onclick="document.getElementById('id01').style.display='block'">Event Coordinators</p>
<div id="id01" class="w3-modal">
<div class="w3-modal-content w3-card-4">
<header class="w3-container">
<span onclick="document.getElementById('id01').style.display='none'"
class="w3-button w3-display-topright">×</span>
</header>
<div class="w3-container">
<p>Abhishek Vats: abhishek.15bcs1067@abes.ac.in</p>
<p>Nandni Tayal: nandini.15bcs1033@abes.ac.in</p>
<p>Anuranjan Bose: anuranjan.15bcs1060@abes.ac.in (8375075899)</p>
<p>Harshit Pandey: harshitpandey678@gmail.com (9650959057)</p>
</div>
</div>
</div>
</div>
<div class="w3-container w3-col m4" >
<p onclick="document.getElementById('id02').style.display='block'" ><i class="icon allerta fa fa-Ev">Event Volunteers</i></p>
<p style="cursor: pointer;" onclick="document.getElementById('id02').style.display='block'">Event Volunteers</p>
<div id="id02" class="w3-modal">
<div class="w3-modal-content w3-card-4">
<header class="w3-container">
<span onclick="document.getElementById('id02').style.display='none'"
class="w3-button w3-display-topright">×</span>
</header>
<div class="w3-container">
<p>Geetanjali</p>
<p>Sakshi Drabu</p>
<p>Pagati Pandey</p>
<p>Apoorv Singhal</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Container (Contact Section) -->
<div style="background-color: #fff;width: 100%;">
<div class=" w3-content w3-container " id="contact" >
<h2 class="w3-center w3-large" style="margin-top: 10%">Designed by- <span class="w3-wide w3-xxlarge unica-one">HARSHIT PANDEY</span></h2>
<p class="w3-center" style="cursor: pointer;" id="click_dropdown">Click Here <i class="fa fa-sort-down" style="font-size:24px "></i></p>
<div id="show_dropdown">
<p class="w3-center"><em>I'd love your feedback!</em></p>
<div class="w3-row w3-padding-32 w3-section">
<div class="w3-col m3 w3-container">
<img src="./img/harshit_logo.png" style="width: 100%;margin-top: 12%">
</div>
<div class="w3-col m9 w3-panel">
<p>Swing by for a cup of <i class="fa fa-coffee"></i>, or leave me a note:</p>
<div class="w3-large w3-margin-bottom">
<i class="fa fa-envelope fa-fw w3-hover-text-black w3-xlarge w3-margin-right"></i> Email: harshitpandey678@gmail.com<br>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div class="">
<img src="./img/poster.jpg" class="w3-hide-small w3-hide-medium" style="width: 100%">
<img src="./img/poster.jpg" class="w3-hide-large " style="width: 150%">
</div>
<div class="w3-row background" style="padding-bottom: 30%;padding-top: 19%">
<div class="w3-col l6">
.
</div>
<div class="w3-col l6">
<a class="w3-right center w3-xlarge w3-round-large w3-padding-large" style="background-color: #A9A9A9;margin-right: 25%;" href="www.google.com">REGISTER</a>
</div>
</div>-->
<!-- /container -->
<script>
// Get the modal
var modal = document.getElementById('id01');
var modal1 = document.getElementById('id02');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
if (event.target == modal1) {
modal1.style.display = "none";
}
}
</script>
<script>
(function() {
var decoLetter = new Letters(document.querySelector('.deco'), {
size: 1000,
weight: 5,
color: 'white',
//color: '#63646B',
duration: 2,
fade:0,
easing: d3_ease.easeExpOut.ease
});
decoLetter.hideInstantly();
setTimeout(function() {
decoLetter.show();
}, 200);
})();
</script>
<script src="js/charming.min.js"></script>
<script src="js/anime.min.js"></script>
<script src="js/demo.js"></script>
<script src="js/demo7.js"></script>
<script src="js/mo.min.js"></script>
<script src="js/demo-1.js"></script>
<script src="js/textfx.js"></script>
<script src="js/sponsor_classie.js"></script>
<script src="js/sponsor_dynamics.min.js"></script>
<script src="js/sponsor_main.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/appshowcase.js"></script>
<script>
$(function() {
Showcase.init();
});
</script>
<script>
(function() {
document.documentElement.className = 'js';
var slideshow = new CircleSlideshow(document.getElementById('sponsor_slideshow'));
})();
</script>
<script>
(function() {
// Slide obj: each Slideshow´s slide will contain the HTML element and the instance of TextFx.
var Slide = function(el) {
this.el = el;
this.txt = new TextFx(this.el.querySelector('.title'));
},
// The Slideshow obj.
Slideshow = function(el) {
this.el = el;
this.current = 0;
this.slides = [];
var self = this;
[].slice.call(this.el.querySelectorAll('.slide')).forEach(function(slide) {
self.slides.push(new Slide(slide));
});
this.slidesTotal = this.slides.length;
this.effect = this.el.getAttribute('data-effect');
};
Slideshow.prototype._navigate = function(direction) {
if( this.isAnimating ) {
return false;
}
this.isAnimating = true;
var self = this, currentSlide = this.slides[this.current];
this.current = direction === 'next' ? (this.current < this.slidesTotal - 1 ? this.current + 1 : 0) : (this.current = this.current > 0 ? this.current - 1 : this.slidesTotal - 1);
var nextSlide = this.slides[this.current];
var checkEndCnt = 0, checkEnd = function() {
++checkEndCnt;
if( checkEndCnt === 2 ) {
currentSlide.el.classList.remove('slide--current');
nextSlide.el.classList.add('slide--current');
self.isAnimating = false;
}
};
// Call the TextFx hide method and pass the effect string defined in the data-effect attribute of the Slideshow element.
currentSlide.txt.hide(this.effect, function() {
currentSlide.el.style.opacity = 0;
checkEnd();
});
// First hide the next slide´s TextFx text.
nextSlide.txt.hide();
nextSlide.el.style.opacity = 1;
// And now call the TextFx show method.
nextSlide.txt.show(this.effect, function() {
checkEnd();
});
};
Slideshow.prototype.next = function() { this._navigate('next'); };
Slideshow.prototype.prev = function() { this._navigate('prev'); };
[].slice.call(document.querySelectorAll('.content-letter-style')).forEach(function(el, pos) {
var slideshow = new Slideshow(el.querySelector('.slideshow'));
el.querySelector('.actions').firstElementChild.addEventListener('click', function() { slideshow.prev(); });
el.querySelector('.actions').lastElementChild.addEventListener('click', function() { slideshow.next(); });
if( pos === 0 || pos === 2 || pos === 6 || pos === 11 || pos === 13 || pos === 14 ) {
var decoColor = getDecoColor(pos);
new LineMaker({
parent: {element: el, position: 'prepend'},
lines: pos % 2 === 0 ? [
{top: 0, left: '6%', width: 1, height: '100vh', color: decoColor},
{top: 0, left: '26%', width: 1, height: '100vh', color: decoColor},
{top: 0, left: '46%', width: 1, height: '100vh', color: decoColor},
{top: 0, left: '66%', width: 1, height: '100vh', color: decoColor},
{top: 0, left: '86%', width: 1, height: '100vh', color: decoColor}
] : [
{top: '20%', left: 0, width: '100vw', height: 1, color: decoColor},
{top: '40%', left: 0, width: '100vw', height: 1, color: decoColor},
{top: '60%', left: 0, width: '100vw', height: 1, color: decoColor},
{top: '80%', left: 0, width: '100vw', height: 1, color: decoColor}
]
});
}
});
var duration = 500, epsilon = (1000 / 60 / duration) / 4, easing1 = bezier(0.1, 1, 0.9, 1, epsilon);
anime.easings['myCustomEasing'] = function(t){ return easing1(t); };
document.querySelector('.btn--modal-trigger').addEventListener('click', openCredits);
modalCloseCtrl.addEventListener('click', closeCredits);
var paterEl = document.querySelector('.pater'),
pater = new TextFx(paterEl.querySelector('.pater__title')),
fxPater = {
in: {
duration: 400,
delay: function(el, index) { return 50+index*20; },
easing: 'easeOutExpo',
opacity: 1,
translateY: ['50%','0%']
},
out: {
duration: 400,
delay: function(el, index) {
return index*20;
},
easing: 'easeOutExpo',
opacity: 0,
translateY: '-50%'
}
};
paterEl.addEventListener('mouseenter', function() {
pater.hide();
setTimeout(function() {
pater.show(fxPater);
},60);
});
paterEl.addEventListener('mouseleave', function() {
pater.show();
});
})();
</script>
</body>
</html>