File size: 1,199 Bytes
7291333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

h1 {
	margin-bottom: 20px;
}

a {
	color: #007bff;
}

#hiraganaBoxes {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	grid-gap: 10px;
	margin: 20px 0;
}

.hiraganaBox {
	border: 1px solid #333;
	padding: 10px;
	margin: 0 10px;
	cursor: pointer;
	border-radius: 0.5rem;
	font-weight: bold;
	width: 2rem;
	text-align: center;
}

.hiraganaBox:hover {
	background-color: lightblue;
}

.hiraganaBox.selected {
	background-color: rgb(106, 96, 250);
}

#canvas {
	border: 1px solid #333;
	display: block;
	margin: 0 auto 20px;
	border-radius: 0.5rem;
}

.btn {
	background-color: #007bff;
	border: none;
	color: #fff;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	margin: 0.5rem 0;
	border-radius: 5px;
}

.btn:hover {
	background-color: #0056b3;
}

#predictionResult {
	margin-top: 20px;
	font-size: 18px;
}

dialog {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	border: 1px solid #333;
	padding: 20px;
}

dialog img {
	max-width: 100%;
	height: auto;
}

dialog button {
	margin-top: 10px;
}