-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbingo.html
74 lines (69 loc) · 2.1 KB
/
bingo.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WTOOLS</title>
<style>
span {
display: flex;
width: 40px;
height: 40px;
background: blue;
align-items: center;
justify-content: center;
margin-left: 5px;
}
.list {
width: 40px;
height: 40px;
/* background: blue; */
align-self: center;
margin-left: 5px;
}
.list-item {
width: 40px;
height: 40px;
background: blue;
margin-top: 5px;
padding-top: 20px;
text-align: center;
vertical-align: middle;
}
</style>
</head>
<body>
<menu></menu>
<main>
<div>
<button id="sortNumberEl">Sort Number</button>
<button id="resetEl">Reset</button>
</div>
<div>
<output id="outputEl">...</output>
</div>
<div>
<output id="historyEl">...</output>
</div>
<div style="display: flex">
<span>B</span>
<span>I</span>
<span>N</span>
<span>G</span>
<span>O</span>
</div>
<div style="display: flex">
<div class="item-b list"></div>
<div class="item-i list"></div>
<div class="item-n list"></div>
<div class="item-g list"></div>
<div class="item-o list"></div>
</div>
</main>
<footer></footer>
<script src="scripts/menu.js"></script>
<script src="scripts/footer.js"></script>
<script src="scripts/bingo.js"></script>
</body>
</html>