-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
84 lines (79 loc) · 3.05 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Mystic Square</title>
<link rel="Shortcut Icon" href="favicon.png">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="css/materialize.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Scripts -->
<script type="text/javascript" src="libs/jquery/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="libs/materialize/js/bin/materialize.min.js"></script>
<script type="text/javascript" src="libs/gsap/TweenMax.min.js"></script>
<script type="text/javascript" src="scripts/stack.js"></script>
<script type="text/javascript" src="scripts/queue.js"></script>
<script type="text/javascript" src="scripts/pair.js"></script>
<script type="text/javascript" src="scripts/board.js"></script>
<script type="text/javascript" src="scripts/main.js"></script>
</head>
<body class="flex-col flex-center-cross ">
<header class="flex-row flex-center-both">
<p>Mystic Square</p>
<div class="links flex-row flex-center-both">
<a href="https://github.com/Cryzek/mystic-sqaure" class="flex-row flex-center-both"><img src="images/github.png"></a>
<span class="flex-row flex-center-both instructions"><img src="images/question-mark.png"></span>
</div>
</header>
<main class="flex-row flex-center-both">
<div class="board-container flex-col flex-center-both ">
<div class="board">
<div class="loader"></div>
</div>
</div>
<!-- Board controls contains
+ the details of an ongoing game such no. of moves and duration,
+ controls to start , pause, resume, stop and auto solve the game,
+ controls to select game difficulty. -->
<div class="board-controls flex-col flex-center-main">
<div class="game-details flex-row flex-center-cross">
<section class="time flex-col flex-center-m">
<p class="section-title">Time</p>
<p class="timer">00:00</p>
</section>
<section class="moves">
<p class="section-title">Number of Moves</p>
<p class="move-count">0</p>
</section>
</div>
<section class="game-controls flex-col flex-center-cross">
<p class="section-title">Game Controls</p>
<div class="wrapper modes flex-row flex-center-cross">
<button class="start btn">Start Time</button>
<button class="stop btn">Stop Time</button>
<button class="solve btn hide">solve</button>
<button class="undo btn">Undo</button>
</div>
</section>
<!-- <section class="difficulty-controls flex-col flex-center-main">
<p class="section-title">Game Mode</p>
<div class="wrapper flex-row">
<div class="easy active difficulty" data-difficulty="easy">
Easy
</div>
<div class="medium difficulty" data-difficulty="medium">
Medium
</div>
<div class="hard difficulty" data-difficulty="hard">
Hard
</div>
</div>
</section> -->
</div>
</main>
</body>
</html>