-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.html
617 lines (518 loc) · 28.4 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
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
<!--
Tux4ME is designed to develop and enhance the mental power of the user by means of simple games.
Copyright (C) 2015 Tux4KIDS
Project website : <tux4me.azurewebsites.net> //This will be moved to Google app engine soon.
Tux4Kids website : <http://tux4kids.alioth.debian.org>
Tux4ME is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Tux4ME is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html lang="en">
<head>
<title>Tux4ME</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<script src="bower_components/webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="elements.html">
<link href="style.css" rel="stylesheet">
<style>
.sk-folding-cube {
margin: 20px auto;
width: 40px;
height: 40px;
position: relative;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
}
.sk-folding-cube .sk-cube {
float: left;
width: 50%;
height: 50%;
position: relative;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
.sk-folding-cube .sk-cube:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: pink;
vertical-align: middle;
-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
animation: sk-foldCubeAngle 2.4s infinite linear both;
-webkit-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
-webkit-transform: scale(1.1) rotateZ(90deg);
transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
-webkit-transform: scale(1.1) rotateZ(180deg);
transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
-webkit-transform: scale(1.1) rotateZ(270deg);
transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
.sk-folding-cube .sk-cube4:before {
-webkit-animation-delay: 0.9s;
animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
0%, 10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
} 25%, 75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1;
} 90%, 100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
@keyframes sk-foldCubeAngle {
0%, 10% {
-webkit-transform: perspective(140px) rotateX(-180deg);
transform: perspective(140px) rotateX(-180deg);
opacity: 0;
} 25%, 75% {
-webkit-transform: perspective(140px) rotateX(0deg);
transform: perspective(140px) rotateX(0deg);
opacity: 1;
} 90%, 100% {
-webkit-transform: perspective(140px) rotateY(180deg);
transform: perspective(140px) rotateY(180deg);
opacity: 0;
}
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-73450011-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="sk-folding-cube">
<div class="sk-cube1 sk-cube"></div>
<div class="sk-cube2 sk-cube"></div>
<div class="sk-cube4 sk-cube"></div>
<div class="sk-cube3 sk-cube"></div>
</div>
<div unresolved>
<template is="dom-bind" id="app">
<paper-drawer-panel id="drawerPanel" responsive-width="820px" >
<paper-header-panel mode="waterfall-tall" tallClass = "medium-tall" class="paper_toolbar_drawer" shadow = "true" drawer>
<paper-toolbar class = "drawer_toolbar">
<div id="logo"><img src = "app_assets/logo_100_100.png"></img></div>
</paper-toolbar>
<paper-menu id="menu-items" selected="{{page}}">
<paper-item label="Home" style="position:relative">
<paper-ripple style="color: #3e2723"></paper-ripple>
<paper-icon-button icon="home" style="color: #3e2723">
</paper-icon-button>
<div>
Home
</div>
</paper-item>
<paper-item label="Games"style="position:relative">
<paper-ripple style="color: #ff5722"></paper-ripple>
<paper-icon-button icon="social:cake" style="color: #ff5722">
</paper-icon-button>
<div>Games</div>
</paper-item>
<paper-item label="Games"style="position:relative">
<paper-ripple style="color: #3f51b5"></paper-ripple>
<paper-icon-button icon="social:pages" style="color: #3f51b5">
</paper-icon-button>
<div>About</div>
</paper-item>
<paper-item label="Tux4Kids" style="position:relative">
<paper-ripple style="color: #00bfa5"></paper-ripple>
<paper-icon-button icon="hardware:toys" style="color: #00bfa5">
</paper-icon-button>
<div>Tux4Kids</div>
</paper-item>
<paper-item label="Feedback"style="position:relative">
<paper-ripple style="color: #e91e63"></paper-ripple>
<paper-icon-button icon="favorite" style="color: #e91e63">
</paper-icon-button>
<div>Feedback</div>
</paper-item>
<paper-item label="View Source"style="position:relative">
<paper-ripple style="color: #795548"></paper-ripple>
<paper-icon-button icon="create" style="color: #795548">
</paper-icon-button>
<div>View Source</div>
</paper-item>
<paper-item label="Contributors"style="position:relative">
<paper-ripple style="color: #795548"></paper-ripple>
<paper-icon-button icon="flag" style="color: #3f51b5">
</paper-icon-button>
<div>Contributors</div>
</paper-item>
</paper-menu>
</paper-header-panel>
<paper-header-panel main mode="standard" class="paper_toolbar_main main_content_area">
<paper-toolbar class = "main_toolbar" id="toolBar_content">
<paper-icon-button icon="menu" alt="menu" class="white" paper-drawer-toggle>
</paper-icon-button>
<div class = "title" style="font-family:Georgia;font-size: 20px;color:#009688">
Tux4ME
</div>
<div style="font-family:Georgia;font-style: italic;font-size: 15px;color:#009688">
Hi kids!
<!--
<paper-icon-button icon="account-circle" alt="more-horiz" class="white">
</paper-icon-button>
-->
<img src="assets/images/bluePenguin_16_16.png"></img>
</div>
</paper-toolbar>
<div id="content_header"></div>
<div class="container" fit layout vertical>
<iron-pages selected="{{page}}" flex>
<section>
<paper-ripple style="color: #009688"></paper-ripple>
<paper-material elevation="3" class="iron-pages-demo-cards">
<div class="demo_card_content">
<paper-toolbar style="background-color:#009688;box-shadow: 0px 5px 0px #cfd8dc">
<div style="font-family:Georgia;font-style: italic;font-size: 15px">Hi Kids, Welcome to Tux4ME</div>
</paper-toolbar>
</div>
<div>
<paper-menu flex>
<paper-item><paper-fab style="background-color:teal" mini icon="av:play-circle-filled" ></paper-fab><span></span><div>Wear your thinking caps!</div></paper-item>
<paper-item><paper-fab style="background-color:teal" mini icon="av:play-circle-filled" ></paper-fab><span></span><div>Use the drawer menu to navigate to games</div></paper-item>
<paper-item><paper-fab style="background-color:teal" mini icon="av:play-circle-filled" ></paper-fab><span></span><div>Enjoy the games! Thank you!</div></paper-item>
<paper-item flex><div><img src="assets/images/penguin.jpg"></img></div><span flex></span><div><img src="assets/images/PenguinWords.png"></img></div></paper-item>
</paper-menu>
</div>
</paper-material>
</section>
<section >
<div id="GamesPage">
<div flex>
<paper-material elevation="3" class="demo_heading" style="background-color:#eceff1">
<div >Steps <iron-icon icon="chevron-right"></iron-icon> Choose your category <iron-icon icon="chevron-right"></iron-icon>Choose a game <iron-icon icon="chevron-right"></iron-icon> <iron-icon style="color:#c2185b" icon="social:mood"></iron-icon></div>
</paper-material>
<paper-material elevation="3" class="demo_heading" style="background-color:#eceff1">
<div ><iron-icon icon="social:cake"></iron-icon> Latest Game <iron-icon icon="chevron-right"></iron-icon> Math mind </div>
</paper-material>
</div>
<div flex>
<paper-material elevation="3" class="demo-cards">
<div class="demo_card_content"><paper-toolbar class="medium-tall" style="background-color:#01579b;box-shadow: 0px 5px 0px #cfd8dc">
<div>Attention</div>
</paper-toolbar>
</div>
<div>
<paper-menu>
<a href="#" onclick="gameLoader(1)">
<paper-item flex style="position: relative" >
<paper-ripple style="color: #01579b"></paper-ripple>
<paper-fab style="background-color:#01579b" mini icon="av:play-arrow" ></paper-fab>
Migrating Flocks
<span flex>
</span>
</paper-item>
</a>
<a href="#" onclick="gameLoader(2)">
<paper-item flex style="position: relative">
<paper-ripple style="color: #01579b"></paper-ripple>
<paper-fab style="background-color:#01579b" mini icon="av:play-arrow" ></paper-fab>
Catch the flow
<span flex>
</span>
</paper-item>
</a>
<a href="#" onclick="gameLoader(11)">
<paper-item flex style="position: relative">
<paper-ripple style="color: #01579b"></paper-ripple>
<paper-fab style="background-color:#01579b" mini icon="av:play-arrow" ></paper-fab>
Motion Commotion
<span flex>
</span>
</paper-item>
</a>
</paper-menu>
</div>
</paper-material>
<paper-material elevation="3" class="demo-cards">
<div class="demo_card_content">
<paper-toolbar class="medium-tall" style="background-color:#00796b;box-shadow: 0px 5px 0px #cfd8dc">
<div>Memory</div>
</paper-toolbar>
</div>
<div>
<paper-menu>
<a href="#" onclick="gameLoader(3)">
<paper-item flex style="position: relative">
<paper-ripple style="color: #00796b"></paper-ripple>
<paper-fab style="background-color:#00796b" mini icon="av:play-arrow" ></paper-fab>
High or Low
<span flex>
</span>
</paper-item>
</a>
<a href="#" onclick="gameLoader(4)">
<paper-item flex style="position: relative" >
<paper-ripple style="color: #00796b"></paper-ripple>
<paper-fab style="background-color:#00796b" mini icon="av:play-arrow" ></paper-fab>
Mind math
<span flex>
</span>
</paper-item>
</a>
<paper-item flex style="position: relative">
<paper-ripple style="color: #00796b"></paper-ripple>
<paper-fab style="background-color:#00796b" mini icon="settings" ></paper-fab>
More games coming soon!
<span flex>
</span>
</paper-item>
</paper-menu>
</div>
</paper-material>
<paper-material elevation="3" class="demo-cards">
<div class="demo_card_content"><paper-toolbar class="medium-tall" style="background-color:#e91e63;box-shadow: 0px 5px 0px #cfd8dc">
<div>Reasoning</div>
</paper-toolbar>
</div>
<div>
<paper-menu>
<a href="#" onclick="gameLoader(5)">
<paper-item flex style="position: relative">
<paper-ripple style="color: #e91e63"></paper-ripple>
<paper-fab style="background-color:#e91e63" mini icon="av:play-arrow" ></paper-fab>
Passive On
<span flex>
</span>
</paper-item>
</a>
<a href="#" onclick="gameLoader(6)">
<paper-item flex style="position: relative">
<paper-ripple style="color: #e91e63"></paper-ripple>
<paper-fab style="background-color:#e91e63" mini icon="av:play-arrow" ></paper-fab>
High Click
<span flex>
</span>
</paper-item>
</a>
<paper-item flex style="position: relative" >
<paper-ripple style="color: #e91e63"></paper-ripple>
<paper-fab style="background-color:#e91e63" mini icon="settings" ></paper-fab>
More games coming soon!
<span flex>
</span>
</paper-item>
</paper-menu>
</div>
</paper-material>
<paper-material elevation="3" class="demo-cards">
<div class="demo_card_content"><paper-toolbar class="medium-tall" style="background-color:#673ab7;box-shadow: 0px 5px 0px #cfd8dc">
<div>Speed</div>
</paper-toolbar>
</div>
<div>
<paper-menu>
<a href="#" onclick="gameLoader(7)">
<paper-item flex style="position: relative">
<paper-ripple style="color: #673ab7"></paper-ripple>
<paper-fab style="background-color:#673ab7" mini icon="av:play-arrow" ></paper-fab>
Flash Back
<span flex>
</span>
</paper-item>
</a>
<a href="#" onclick="gameLoader(8)">
<paper-item flex style="position: relative">
<paper-ripple style="color: #673ab7"></paper-ripple>
<paper-fab style="background-color:#673ab7" mini icon="av:play-arrow" ></paper-fab>
Math operations
<span flex>
</span>
</paper-item>
</a>
<paper-item flex style="position: relative">
<paper-ripple style="color: #673ab7"></paper-ripple>
<paper-fab style="background-color:#673ab7" mini icon="settings" ></paper-fab>
More games coming soon!
<span flex>
</span>
</paper-item>
</paper-menu>
</div>
</paper-material>
<paper-material elevation="3" class="demo-cards">
<div class="demo_card_content"><paper-toolbar class="medium-tall" style="background-color:#ff5722;box-shadow: 0px 5px 0px #cfd8dc">
<div>Flexibilty</div>
</paper-toolbar>
</div>
<div>
<paper-menu>
<a href="#" onclick="gameLoader(9)">
<paper-item flex style="position: relative">
<paper-ripple style="color: #00c853"></paper-ripple>
<paper-fab style="background-color:#ff5722" mini icon="av:play-arrow" ></paper-fab>
Double Trouble
<span flex>
</span>
</paper-item>
</a>
<a href="#" onclick="gameLoader(10)">
<paper-item flex style="position: relative" >
<paper-ripple style="color: #00c853"></paper-ripple>
<paper-fab style="background-color:#ff5722" mini icon="av:play-arrow" ></paper-fab>
Drift Me
<span flex>
</span>
</paper-item>
</a>
<paper-item flex style="position: relative">
<paper-ripple style="color: #00c853"></paper-ripple>
<paper-fab style="background-color:#ff5722" mini icon="settings" ></paper-fab>
More games coming soon!
<span flex>
</span>
</paper-item>
</paper-menu>
</div>
</paper-material>
</div>
</div>
</section>
<section>
<paper-ripple style="color: #03a9f4"></paper-ripple>
<paper-material elevation="3" class="iron-pages-demo-cards">
<div class="demo_card_content">
<paper-header-panel shadow = "true" >
<paper-toolbar class="medium-tall">
<paper-icon-button icon="social:pages"></paper-icon-button>
<div>Tux Mind Exercise (Tux4ME) </div>
<div class="bottom title" style="font-size:12px;color:white">Simple games to enhance your mental ability</div>
</paper-toolbar>
</paper-header-panel>
</div>
<div>
<paper-menu flex>
<paper-item><span></span><div style="font-family:Georgia;font-size:15px">Tux4ME is designed to develop and enhance mental power. It include a series of game, each testing and improving player’s
Reasoning capabilities, Speed, Attention, Flexibility, Memory power.
There will be simple games, which you can play daily. This will help you to exercise your brain to make it active and healthy. It is a web app for fun and self improvement</div></paper-item>
<paper-item flex><div style="position: relative;margin:auto"><img src="assets/images/tuxMindExcercise_250_125.png"></img><span></span></div></paper-item>
</paper-menu>
</div>
</paper-material>
</section>
<section >
<paper-ripple style="color: #03a9f4"></paper-ripple>
<paper-material elevation="3" class="iron-pages-demo-cards">
<div class="demo_card_content">
<paper-toolbar style="background-color:#03a9f4;box-shadow: 0px 5px 0px #cfd8dc">
<div style="font-family:Georgia;font-style: italic;font-size: 15px">Tux4Kids</div>
</paper-toolbar>
</div>
<div>
<paper-menu flex>
<paper-item><span></span><div style="font-family:Georgia;font-size:12px"><p>Tux4Kids develops high-quality software for kids, with the goal of combining fun and learning into an irresistable package. Our software is free: you can download it for use at home or onto hundreds of computers in a school. We support all major platforms, including Windows, Macintosh, and Linux/Unix. Our programs are used by people around the globe, and they have been translated into dozens of different languages. As open-source software, these programs can be freely extended or customized, and they are supported by active communities of volunteer developers.<break>Whether you're a parent, a teacher, or a kid, give Tux4Kids software a try!</p></div></paper-item>
<paper-item><paper-fab style="background-color:#03a9f4" mini icon="hardware:toys" ></paper-fab><span></span><div>WebSite</div><iron-icon icon="chevron-right"></iron-icon><div><a href="http://tux4kids.alioth.debian.org/">http://tux4kids.alioth.debian.org/</a></div></paper-item>
</paper-menu>
</div>
</paper-material>
</section>
<section>
<paper-ripple style="color: #03a9f4"></paper-ripple>
<paper-material elevation="3" class="iron-pages-demo-cards-feedback">
<div class="demo_card_content">
<paper-toolbar style="background-color:#03a9f4;box-shadow: 0px 5px 0px #cfd8dc">
<div style="font-family:Georgia;font-style: italic;font-size: 15px">Your valuable feedback or suggestions !</div>
</paper-toolbar>
</div>
<div>
<iframe src="https://docs.google.com/forms/d/159o0Gj8ixtiJCdWUdCM8Ey4fjKHfAvMsI-17RM368Ik/viewform?embedded=true" width="590" height="550" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</paper-material>
</section>
<section>
<paper-ripple style="color: #3f51b5"></paper-ripple>
<paper-material elevation="3" class="iron-pages-demo-cards">
<div class="demo_card_content">
<paper-toolbar style="background-color:#3f51b5;box-shadow: 0px 5px 0px #cfd8dc">
<div style="font-family:Georgia;font-style: italic;font-size: 15px">Tux4ME developers</div>
</paper-toolbar>
</div>
<div>
<paper-menu flex>
<a href="https://www.linkedin.com/in/sekarvignesh">
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="face" ></paper-fab><span></span><div style="font-family:Georgia;font-style: italic;font-size: 15px">Student (Author)</div><iron-icon icon="chevron-right"></iron-icon><div>Vignesh S</div></paper-item>
</a>
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="social:person" ></paper-fab><span></span><div style="font-family:Georgia;font-style: italic;font-size: 15px">Mentor</div><iron-icon icon="chevron-right"></iron-icon><div>Scott McCreary</div></paper-item>
<a href="https://github.com/Vigneshsekar/Tux4ME/">
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="create" ></paper-fab><span></span><div>Source Code</div><iron-icon icon="chevron-right"></iron-icon><div>GitHub<iron-icon icon="chevron-right"></iron-icon>Vigneshsekar<iron-icon icon="chevron-right"></iron-icon>Tux4ME</div></paper-item>
</a>
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="hardware:toys" ></paper-fab><span></span><div>Developed With</div><iron-icon icon="favorite" style="color:#e91e63"></iron-icon><div>by Tux4kids Organization</div></paper-item>
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="flag" ></paper-fab><span></span><div>Developed under Google summer of code - 2015</div></paper-item>
</paper-menu>
</div>
</paper-material>
</section>
<section>
<paper-ripple style="color: #3f51b5"></paper-ripple>
<paper-material elevation="3" class="iron-pages-demo-cards">
<div class="demo_card_content">
<paper-toolbar style="background-color:#3f51b5;box-shadow: 0px 5px 0px #cfd8dc">
<div style="font-family:Georgia;font-style: italic;font-size: 15px">Tux4ME Contributors</div>
</paper-toolbar>
</div>
<div>
<paper-menu flex>
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="create" ></paper-fab><span></span><div style="font-family:Georgia;font-style: italic;font-size: 15px">New Game</div><iron-icon icon="chevron-right"></iron-icon><div>Motion Commotion</div><iron-icon icon="chevron-right"></iron-icon><div>by Vatsala Swaroop</div></paper-item>
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="create" ></paper-fab><span></span><div style="font-family:Georgia;font-style: italic;font-size: 15px">New Game</div><iron-icon icon="chevron-right"></iron-icon><div>Wall Roll (in testing)</div><iron-icon icon="chevron-right"></iron-icon><div>by Harshit Juneja</div></paper-item>
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="hardware:toys" ></paper-fab><span></span><div style="font-family:Georgia;font-style: italic;font-size: 15px">New features</div><iron-icon icon="chevron-right"></iron-icon><div>Deepak Sharma, Menaka</div></paper-item>
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="bug-report" ></paper-fab><span></span><div style="font-family:Georgia;font-style: italic;font-size: 15px">Resolved bugs</div><iron-icon icon="chevron-right"></iron-icon><div>Karthikeyan</div></paper-item>
<paper-item><paper-fab style="background-color:#3f51b5" mini icon="social:pages" ></paper-fab><span></span><div>We sincerely thank and acknowledge your Contributions,<iron-icon icon="favorite" style="color:#e91e63"></iron-icon> . </div></paper-item>
</paper-menu>
</div>
</paper-material>
</section>
</iron-pages>
</div>
</paper-header-panel>
</paper-drawer-panel>
</template>
<script type="text/javascript" src="script.js"></script>
</div>
</body>
<!--
Tux4ME is developed under Google summer of code - 2015. 10 games using Phaser and a Web app using Polymer has been completed by August,21 2015. Any changes made to this project after this period is by self-interest and the same will not be included in the submission to Google summer of code team.
-->
</html>