forked from Creaser/Kittyclicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (108 loc) · 5.55 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>KittyClicker V3</title>
<link type="text/css" rel="stylesheet" href="assets/css/materialize.min.css" media="screen,projection"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<nav class="teal lighten-2">
<a href="#" class="brand-logo">KittyClicker V3</a>
<ul class="right hide-on-med-and-down">
<li><a href="#!">Updatelog</a></li>
<li><a href="#!">Dontate</a></li>
</ul>
<ul id="slide-out" class="side-nav">
<li><a href="#!">Updatelog</a></li>
<li><a href="#!">Dontate</a></li>
</ul>
<a href="#" data-activates="slide-out" class="button-collapse"><i class="mdi-navigation-menu"></i></a>
</nav>
<div class="container" style="margin-top: 50px;">
<div class="row">
<div class="col s3 teal lighten-3">
<h5>Kitty Clicker Stats</h5>
<ul class="collection z-depth-1">
<li class="collection-item" >
<span class="left-align" id="KittysCurrent">0.00</span> <span class="right">Kittys</span>
</li>
<li class="collection-item">
<span class="left-align" id="KittysPerSec">0,00</span> <span class="right">Kittys per Second</span>
</li>
</ul>
</div>
<div class="col s6">
<img class="responsive-img waves-effect" src="assets/img/kitty.png" id="kittyIMG">
</div>
<div class="col s3 teal lighten-3">
<h5>Fancy Items</h5>
<div class="collection z-depth-1">
<a href="#!" class="collection-item">
<img class="responsive-img" src="assets/img/softhand.png" id="ItemSoftHand">
<span class="center" id="ItemSofHandNext">( Kittys)</span>
<span class="badge" id="ItemSoftHandCurrent">0</span>
</a>
<a href="#!" class="collection-item">Feeding Bowl <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
<a href="#!" class="collection-item">Wool Ball <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
<a href="#!" class="collection-item">Litter Box <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
<a href="#!" class="collection-item">Cat Tree <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
<a href="#!" class="collection-item">Cat Grass <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
<a href="#!" class="collection-item">Fishing Pole <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
<a href="#!" class="collection-item">Bird Cage <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
<a href="#!" class="collection-item">Fresh Fish <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
<a href="#!" class="collection-item">Laserpointer <span class="center">(1000 Kittys)</span> <span class="badge">1</span></a>
</div>
</div>
</div>
<div class="row">
<div class="col s3 teal lighten-3">
<h5>Menue</h5>
<div class="collection z-depth-1">
<a href="#!" class="collection-item waves-effect">Save <i class="material-icons left">cloud_upload</i></a>
<a href="#!" class="collection-item waves-effect">Load <i class="material-icons left">cloud_download</i></a>
<a href="#!" class="collection-item waves-effect">Download File <i class="material-icons left">file_download</i></a>
<a href="#!" class="collection-item waves-effect" id="toggleSound">Sound <i class="material-icons left" id="toggleSoundIcon">block</i></a>
</div>
</div>
<div class="col s9 teal lighten-3">
<h5>Upgrades</h5>
<p class="card-content">Comming</p>
</div>
</div>
</div>
<footer class="page-footer teal lighten-2">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Kitty Clicker</h5>
<p class="grey-text text-lighten-4">Miau Miau wuff</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">More Games by Fancyco</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="#!">Game 1</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Game 2</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Game 3</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Game 4</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2014 FancyCo
</div>
</div>
</footer>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="assets/js/materialize.min.js"></script>
<script type="text/javascript" src="assets/js/script.js"></script>
<script>
$(document).ready(function(){
$(".button-collapse").sideNav();
})
</script>
</body>
</html>