-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (73 loc) · 2.59 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 class="no-js" lang="en-US">
<head>
<meta charset="utf-8" />
<title>仮名 Flashcards</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="Kana Flashcards" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://kleber-silva.com/kana-flashcards" />
<meta property="og:image" content="./tile-wide.png" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="manifest" href="site.webmanifest" />
<link rel="apple-touch-icon" href="icon.png" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/fontello.scss" />
<link rel="stylesheet" href="css/index.scss" />
<link rel="stylesheet" href="css/main.scss" />
<link rel="stylesheet" href="css/game.scss" />
<link rel="stylesheet" href="css/results-panel.scss" />
<meta name="theme-color" content="#1d1d1bff" />
</head>
<body>
<div id="main">
<h1>
<p class="kana">仮名</p>
<p class="title">flashcards</p>
</h1>
<div class="content">
<div id="kanas"></div>
<div id="options">
<h2>options</h2>
<div class="content">
<div class="option">
<label for="reveal-delay">reveal delay</label>
<number-input id="reveal-delay" class="input border" min="0" max="100" value="0"> </number-input>
</div>
<div class="option">
<label for="auto-advance">auto advance in</label>
<number-input id="auto-advance" class="input border" min="0" max="100" value="0"> </number-input>
</div>
<div class="option">
<label for="training">train</label>
<text-toggle
selected-text="A ➔ あ"
unselected-text="あ ➔ A"
selected="true"
id="training"
class="btn btn-primary input"
></text-toggle>
</div>
<div class="option audio">
<label for="withAudio">sound</label>
<label for="withAudio" class="checkbox input">
<input type="checkbox" name="withAudio" id="withAudio" />
<span class="checkmark"></span>
</label>
</div>
</div>
</div>
</div>
<div id="version">$VERSION$</div>
<a href="https://github.com/kleber-swf/kana-flashcards" id="fork-on-github" target="_blank">
<i class="icon-github"></i>
</a>
</div>
<error-snackbar id="error"></error-snackbar>
<div id="start-button" class="btn">start</div>
<kana-game id="game"></kana-game>
<results-panel id="results"></results-panel>
<script src="src/main.ts" type="module"></script>
</body>
</html>