-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.html
76 lines (76 loc) · 2.13 KB
/
block.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
<div
id="WORD_ID-_WORD_ID"
class="dropdown-menu d-block position-static border-0 pt-0 mx-0 rounded-3 shadow overflow-hidden w-280px"
data-bs-theme="dark">
<div class="d-flex flex-fill align-items-center bg-white">
<img
class="img-fluid mx-auto d-block"
src="img/_IMAGE_FILE" />
</div>
<a
class="dropdown-item d-flex justify-content-end align-items-center gap-2 py-2"
href="#">
<span class="d-inline-block bg-secondary badge text-bg-primary">
<span class="text-warning">_LESSON_ID</span>
: _WORD_DISPLAY_ID
</span>
</a>
<form class="pt-0 p-2 mb-2 bg-dark border-bottom border-dark">
<div
id="FULLWORD-_WORD_ID"
class="form-control bg-dark form-control-lg">
<h2>_FULLWORD</h2>
</div>
</form>
<ul class="list-unstyled mb-0">
<li id="_CHOIC_0">
<a
class="dropdown-item d-flex align-items-center gap-2 py-2"
href="#">
<span class="d-inline-block bg-success rounded-circle p-1">
1
</span>
_WORD-0
</a>
</li>
<li id="_CHOIC_1">
<a
class="dropdown-item d-flex align-items-center gap-2 py-2"
href="#">
<span class="d-inline-block bg-primary rounded-circle p-1">
2
</span>
_WORD-1
</a>
</li>
<li id="_CHOIC_2">
<a
class="dropdown-item d-flex align-items-center gap-2 py-2"
href="#">
<span class="d-inline-block bg-danger rounded-circle p-1">
3
</span>
_WORD-2
</a>
</li>
<li id="_CHOIC_3">
<a
class="dropdown-item d-flex align-items-center gap-2 py-2"
href="#">
<span class="d-inline-block bg-info rounded-circle p-1">
4
</span>
_WORD-3
</a>
</li>
<li>
<a
class="pe-none dropdown-item align-items-center gap-2 py-2 text-center"
href="#"
id="_RESULT"
aria-disabled="true">
<span class="text-secondary">NO ANSWER</span>
</a>
</li>
</ul>
</div>