-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
531 lines (343 loc) · 16.2 KB
/
index.html
File metadata and controls
531 lines (343 loc) · 16.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Maker Party Kochi</title>
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/main.css" rel="stylesheet">
<link href="css/shapes.css" rel="stylesheet">
<link href="css/letters.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Custom Fonts -->
<!--
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700italic,800italic' rel='stylesheet' type='text/css'>
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/JavaScript">
</script>
<script type="text/JavaScript">
$(window).load(function() {
$("#nav-toggle").click(function(){
if(!($(".nav-wrap").hasClass("open")))
{
//$(".nav-wrap").css({ "right" : "0" });
$(".nav-wrap").addClass("open");
$("#nav-toggle").toggleClass("active");
$("#pagecontents").delay(2000).addClass("mopen");
// alert("Fuck");
}
else
{
$(".nav-wrap").removeClass("open");
$("#nav-toggle").toggleClass("active");
$("#pagecontents").removeClass("mopen");
//alert("Fucker");
}
});
/** Window Height n stuffs **/
function jQupdatewindow(){
var width = $(window).width();
var height = $(window).height();
//init_menu_posY = height - total_offset;
/** EacH Section open animation **/
$(".row").each(function(){
//console.log ( $(this).offset().top + "anim");
if ( ( $(window).scrollTop() < $(this).offset().top + $(this).height() - 150) && $(window).scrollTop() + $(window).height() > $(this).offset().top +100 ) { //$(this).height()+ $(this).offset().top-150 > $(window).scrollTop()
$(this).css({'transform':'scale(1,1)','opacity':1, '-webkit-transform': 'scale(1,1)'});
}else {
$(this).css({'transform':'scale(0.5,1)','opacity':0, '-webkit-transform': 'scale(0.5,1)'});
}
});
};
$(document).ready(jQupdatewindow); // When the page first loads
$(window).resize(jQupdatewindow); // When the browser changes size
$(window).scroll(jQupdatewindow);
/** end each section open animation **/
});
</script>
</head>
<body id="page" class="index">
<section id="hexformation">
<div id="right-hex"></div>
<!-- <div id="left-hex"></div>
<<div id="bottom-right-hex"></div>
<div id="bottom-left-hex"></div>-->
</section>
<section id="nav">
<div id="nav-toggle" href="#">
<span></span>
</div>
<div class="nav-wrap">
<ul>
<li><a href="#MainHome">Home</a></li>
<li><a href="#whatmakes">What?</a></li>
<li><a href="#whatismp">Why?</a></li>
<li><a href="#registerbanner">Get me in.</a></li>
<li><a href="#theend">Contact</a></li>
</ul>
</div>
</section>
<div id="pagecontents"><!-- Website Wrap :) -->
<div id="infoTabs">
</div>
<!-- #Mainhome == First Front Page of the website -->
<section id="MainHome">
<div class="container">
<div class="row">
<div class="title-contain col-md-7 col-md-offset-3 ">
<!--
<div class="page-title">
<h1>Maker</h1>
<div class="clear"></div>
<h1>Party</h1>
<div class="pretitle">
Kochi
</div>
</div>
-->
<!--- Anush's Maker Party Logo
<div class="text-mp yellow">
<div class="letter-container M">
<div class="M1 letter"></div>
<div class="M2 letter parallelogram-letter"></div>
<div class="M3 letter parallelogram-letter-inv"></div>
<div class="M4 letter "></div>
</div>
<div class="letter-container A">
<div class="A1 letter parallelogram-letter-inv"></div>
<div class="A2 letter parallelogram-letter"></div>
<div class="A3 letter horizontal-letter"></div>
</div>
<div class="letter-container K">
<div class="K1 letter"></div>
<div class="K2 letter parallelogram-letter-inv h55"></div>
<div class="K3 letter parallelogram-letter h55"></div>
</div>
<div class="letter-container E">
<div class="E1 letter"></div>
<div class="E2 letter horizontal-letter"></div>
<div class="E3 letter horizontal-letter"></div>
<div class="E4 letter horizontal-letter"></div>
</div>
<div class="letter-container R">
<div class="R1 letter"></div>
<div class="R2 letter circuar-letter"></div>
<div class="R3 letter parallelogram-letter h55"></div>
</div>
</div>
<div class="text-mp yellow">
<div class="letter-container P">
<div class="P1 letter"></div>
<div class="P2 letter circuar-letter"></div>
</div>
<div class="letter-container A">
<div class="A1 letter parallelogram-letter-inv"></div>
<div class="A2 letter parallelogram-letter"></div>
<div class="A3 letter horizontal-letter"></div>
</div>
<div class="letter-container R">
<div class="R1 letter"></div>
<div class="R2 letter circuar-letter"></div>
<div class="R3 letter parallelogram-letter h55"></div>
</div>
<div class="letter-container T">
<div class="T1 letter horizontal-letter"></div>
<div class="T2 letter"></div>
</div>
<div class="letter-container Y">
<div class="Y1 letter parallelogram-letter"></div>
<div class="Y2 letter parallelogram-letter-inv"></div>
<div class="Y3 letter"></div>
</div>
</div>
END ANUSH MAKER PARTY LOGO -->
<img src="img/MakerPartylogo.png" />
<div>
<h2>A Festival of Inventions and Inspiration!</h2>
</div>
<div class="row" id="dateid">
<div class="container title-contain"><h1>September 20, 21, 22. 2014</h1>
<h4>Mozilla Kerala \ Cochin University of Science And Technology, Kochi</h4>
</div>
<div class="container alert"><a href="#registerbanner">Registration are Open!</a></div>
</div>
</div>
</div>
</div>
</section>
<section id="whatmakes" class="slant white bottom animated fadeInLeft">
<div class="container-fluid">
<h2 class="section-title">
<!--What we Love?-->
</h2>
<div class="row">
<div class="mDetail-1 col-md-7">
<h2 class="widb-title">
<strong>DISCOVER</strong>
</h2>
<p class="sc-para">Introduce yourself to new skills quickly through fun things to read, watch, listen or share. The event has a simple format like science fair, where facilitators are sharing cutting edge technologies, each something new in a engaging way.
</br></br>
<a href ="makes-register.html">Register yourself here</a>
</p>
</div>
<div class="mDetail-2 col-md-5">
<h2 class="widb-title"><strong>LEARN</strong>
</h2>
<p class="sc-para">Get your hands dirty. The best way to learn is through hands-on making and building! Create web pages, multimedia videos, or remixes that help you learn practical skills as you go.</p></br>
<a href ="volunteer-register.html">Register yourself here</a>
</div>
</div>
<div class="row">
<div class="mDetail-4 col-md-7 col-md-push-5">
<h2 class="widb-title"><strong>INSPIRE</strong>
</h2>
<p class="sc-para">Hear from a bunch of awesome souls who created really cool stuffs that will change our life. Innovators, Actors, Leaders, Entrepreneurs, Students... Worth giving your ears.</p>
</div>
<div class="mDetail-3 col-md-5 col-md-pull-7"> <h2 class="widb-title">JOIN US AT<strong>Kochi</strong></h2></div>
</div>
<div class="row">
<div class="mDetail-5">
<h2></h2>
</div>
</div>
</div>
</section>
<!-- #whatismp is the section for the detailing abt makerparty -->
<section id="whatismp" class="slant top">
<div class="container">
<div class="col-md-8">
<div class="row">
<h1> What is Maker Party? </h1>
<div class="sm-line"></div>
<p class="wimp-content col-md-8 col-md-offset-2">
Maker Party is Mozilla's global campaign to teach the web. Through thousands of community-run events around the world, Maker Party unites educators, organizations and enthusiastic web users with hands-on learning and making.
</p>
</div>
<div class="row">
<h1>#KochiHacks</h1>
<div class="sm-line"></div>
<div class="wimp-content col-md-8 col-md-offset-2">
At the heart of Kochi and at one of the most pioneer educational institution of the country, Cochin University Of Science And Technology, we are expecting an audience of 3000+. The awesomeness doesn't stop here we are setting up about 50 stations to reach all kinds of stuffs ranging from how to start a computer to open robotics and much more. There will also be dedicated talks by leading personalities. Couple of sessions for Women folks to dive them into open source projects. And of course there will be exclusive promotions of FFOS Smartphones that is being recently launched on Indian market. This will totally be a festival of learning irrespective of age, first of its kind in the locale where people from all strata of life come and gather knowledge.Fun Unlimited love Spread the word about this Open Carnival #KochiHacks
</div>
</div>
</div>
<div class="col-md-4">
<div id="event-counts" class="row">
<h1>3000+</h1><h2>Attendees</h2>
<h1>50+</h1><h2>Learning Stations</h2>
<h1>40+</h1><h2>Makers</h2>
<h1>10+</h1><h2>Talks</h2>
<!-- <h1>3</h1><h2>Days</h2>-->
<h3>and many more... :)</h3>
</div>
</div>
</div>
</section>
<section id="watchvideo">
<div class="container">
<h3 class="text-center"><a href="https://www.youtube.com/watch?v=oko6TzPQE6Y">Watch our video</a></h3>
</div>
</section>
<section id="registerbanner">
<div class="container">
<div class="row">
<h1 class="col-md-2">Register Now</h1>
<ul class="col-md-10">
<li><a href="makes-register.html">Makers</a></li>
<li><a href="volunteer-register.html">Volunteer</a></li>
<!--<li><a href="#">Teaching</a></li>-->
</ul>
</div>
</div>
</section>
<footer id="theend">
<div class="row">
<div class="col-md-3">
<div id="endcredits">
<h2>Credits?</h2>
<h4><a href="http://mozillakerala.org">A Mozilla Kerala Initative</a></h4>
<h4>In Association With CUSAT, Kochi</h4>
<h4>CITTIC, CUSAT</h4>
</div>
</div>
<div class="col-md-6">
<h2>Need Help?</h2>
<div class="col-sm-4">
<p>
<strong>Abid Aboobaker</strong></br>
Event Head / Mozilla Rep
</br>
Phone : 9746223022
</br>abid2020@gmail.com
</br></br>
<strong>Eby Jose</strong>
</br>
Sponsorship / Marketing
</br>
Mob: 8089150636
</br>mail.eby.jose@gmail.com
</p>
</div>
<div class="col-sm-4">
<p>
<strong>Anatharaman</strong></br>
HR / Marketing
</br>
Phone : 8111920207
</br>anantharaman.aassk@gmail.com
</br></br>
<strong>Midhun M</strong>
</br>
Finance and Mozilla Rep
</br>
Mob: 9446534463
</br>this4midhun@gmail.com
</p>
</div>
<div class="col-sm-4">
<p>
<strong>Anush Anil Kumar</strong></br>
Talks Organizer / Mozilla Rep
</br>
Phone : 8891026874
</br>anushbmx@gmail.com
</br></br>
<strong>Mehar MP</strong>
</br>
Operations / Relations
</br>
Mob: 9020024148
</br>mehar@anamega.com
</p>
</div>
</div>
<div id="sociallinks" class="col-md-3">
<h2>Social?</h2>
<a href="http://facebook.com/makerpartykochi" >Facebook </a> </br> <a>Twitter </a>
</div>
</div>
</footer>
</div><!-- End Website Wrap -->
<div class="border-left"></div>
<div class="border-right"></div>
<div class="border-top"></div>
<div class="border-bottom"></div>
<!-- jQuery Version 1.11.0 -->
<script src="js/jquerymin.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>