forked from teamcalendar/projectgitgrub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gameapp.html
87 lines (73 loc) · 2.95 KB
/
gameapp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:500,500i,700,700i|Londrina+Solid:400,900" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/gameapp.css">
<link rel="stylesheet" type="text/css" href="css/transition.css">
<title>Project GitGrub : Game Screen</title>
</head>
<body>
<div id="root"></div>
<template id="app-template">
<div id="title"><h1 class="main-title">Project GitGrub</h1><img id="exit-button" src="images/exitbutton.png"></div>
<div id="player-score-judge">
<div id="player-display"></div>
<div id="score-display"></div>
<div id="judge-display"></div>
</div>
<div id="round-display"></div>
<div id="transition"></div>
</template>
<template id="player-display-template">
<h3 class="player-name">PLAYER</h3>
<img class="style-player">
</template>
<template id="judge-display-template">
<h3 class="judge-name">JUDGE</h3>
<img class="style-judge">
</template>
<template id="round-display-template">
<img id="table" class="style-table">
<div id="ingredient-selector"></div>
</template>
<template id="ingredient-selector-template">
<div id="recipe-name" class="flex-grid"></div>
<img id="style-roundbutton">
<div id="ingredient"></div>
</template>
<template id="ingredient-template">
<label><img class="individual-ingredient">
<input type="checkbox" style="display: none">
</label>
</template>
<template id="transition-template">
<section>
<div id = "transition-message-container">
<div class="top-lights"></div>
<h2 class="transition-message"></h2>
<div class="bottom-lights"></div>
</div>
</section>
</template>
<template id="score-display-template">
<div id="score-container">
<h3 class="style-score">Score:</h3>
<h2></h2>
</div>
</template>
<script src = "js/recipesList.js"></script>
<script src = "js/scoredisplay.js"></script>
<script src = "js/transitions.js"></script>
<script src = "js/Ingredient.js"></script>
<script src = "js/IngredientSelector.js"></script>
<script src = "js/RoundDisplay.js"></script>
<script src = "js/playerdisplay.js"></script>
<script src = "js/judgedisplay.js"></script>
<script src = "js/gameapp.js"></script>
<script src = "js/main.js"></script>
</body>
</html>