forked from gjeuken/telewave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcute_countdown.html
136 lines (108 loc) · 4.63 KB
/
cute_countdown.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cute Countdown</title>
<meta name="description" content="Telewave">
<meta name="author" content="Iwua">
<link rel="stylesheet" href="styles/styles.css?v=1.0">
<link rel="stylesheet" href="styles/rankmasterstyles.css">
<link rel="shortcut icon" type="image/png" href="icons/rankmaster.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Doto:[email protected]&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&display=swap');
</style>
</head>
<body>
<div>
<img src="img/cutecountdownlogo.png" alt="logo" style="height: 100px; margin: 10px; margin-bottom: 30px;">
<div id='header'>
<div>
<button id="new" class="atma-medium" onclick="newClue()">❓ New clue</button>
<!-- <button id="commit" onclick="button_guess()">🎯 Guess</button> -->
<!-- <button id="reveal" onclick="peekFishyAnswer()">👀 Peek</button> -->
<!-- <button id="reset" onclick="clearFishyAnswer()">🧹 Clear</button> -->
</div>
<div>
<a href="instructions/cute_countdown" target="_blank">Instructions</a>
<a href="lang/langs"><img src="lang/icons/translation.png" alt="Other languages" width=36px height=36px></a>
</div>
</div>
</div>
<div class="RM-board">
<div class="RM-question atma-semibold" id="RM-Q1" onclick="selectQuestion(1)">
<h2 id="RM-Q1-question"></h2>
<p class="RM-range">From: <span class="RM-from" id="RM-Q1-from"></span></p>
<p class="RM-range">To: <span class="RM-to" id="RM-Q1-to"></span></p>
</div>
<div class="RM-question atma-semibold" id="RM-Q2" onclick="selectQuestion(2)">
<h2 id="RM-Q2-question"></h2>
<p class="RM-range">From: <span class="RM-from"id="RM-Q2-from"></span></p>
<p class="RM-range">To: <span class="RM-to"id="RM-Q2-to"></span></p>
</div>
</div>
<div id="scoreboard">
<div class="divTable scoreboard fish">
<div class="divTableBody">
<div class="divTableRow">
<div class="divTableCell playerCell">
<p id="player1Name" style="padding: 0; margin: 0;">Players</p>
<div>
<button class="stepButton" type="button" onclick="this.parentNode.querySelector('[type=number]').stepDown();">
-
</button>
<input id="RM-Players" type="number" name="number" min="4" max="8" value="4">
<button class="stepButton" type="button" onclick="this.parentNode.querySelector('[type=number]').stepUp();">
+
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="RM-tokens" onclick="explosion()">
</div>
<div>
<div style="margin-top:20px; display: flex">
<button class="button atma-medium" onclick="resetScore()">Reset Score</button>
<button class="button atma-medium" onclick="reverseExplosion()" style="margin-left: auto; margin-right: 0;"><i class="fa fa-undo" aria-hidden="true"></i> Undo</button>
</div>
<!-- <div style="margin-top:20px" id="interference">
<a href="interference.html" class="button" style="font-weight:bold">🧠 Telewave Interference 🧠</a>
</div> -->
</div>
<div class="games">
<div style="margin-top:20px" id="interference">
<a href="index.html" class="button" style="font-weight:bold">🌊 Telewave 🌊</a>
</div>
<div style="margin-top:20px" class="inprogress">
<a href="interference.html" class="button" style="font-weight:bold">🧠 Telewave Interference 🧠</a>
</div>
<div style="margin-top:20px" >
<a href="sounds_fishy.html" class="button" style="font-weight:bold">🐠 Sounds Fishy 🐡</a>
</div>
<div style="margin-top:20px" >
<a href="sheeple.html" class="button" style="font-weight:bold">🐑 Sheeple 🐑</a>
</div>
<div style="margin-top:20px" >
<a href="chameleon.html" class="button" style="font-weight:bold">🦎 Chameleon 🦎</a>
</div>
<!-- <div style="margin-top:20px" >
<a href="cute_countdown.html" class="button" style="font-weight:bold">💥 Cute Countdown 💥</a>
</div> -->
<div style="margin-top:20px" >
<a href="sketchy_creatures.html" class="button" style="font-weight:bold">✏️ Sketchy Creatures 👾</a>
</div>
<div style="margin-top:20px" >
<a href="spurt.html" class="button" style="font-weight:bold">👄 Spurt 👄</a>
</div>
</div>
<script src="scripts/cuteCountdown_data.js"></script>
<script src="scripts/cuteCountdown_scripts.js"></script>
<!--
// TODO
// form to add new questions to data -->
</body>
</html>