-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Yes</title>
<script type="module" src="index.js" defer></script>
<style>
html,
body {
margin: 0;
padding: 0;
overflow: hidden; /* Prevent scrolling */
height: 100%; /* Full height */
width: 100%; /* Full width */
}
#wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
button {
height: 25vh;
width: 50vw;
max-height: 100px; /* Adjust as needed */
max-width: 300px; /* Adjust as needed */
}
#move {
position: absolute;
bottom: 0;
right: 0;
}
</style>
</head>
<body>
<div id="wrapper">
<button id="incre1">+1 1-8</button>
<button id="incre2">+1 a-h</button>
<button id="send">send</button>
<button id="White">White</button>
<button id="Black">Black</button>
<p id="move"></p>
</div>
</body>
</html>