This commit is contained in:
AUnicornWithNoLife 2021-04-11 21:05:51 +01:00
parent bb1779187f
commit 42c619e5aa
2 changed files with 37 additions and 9 deletions

View File

@ -14,19 +14,37 @@
<body onload="load();">
<table id='board'>
<tr>
<th><button onmousedown="move('00');" id='id00'> </button></th>
<th><button onmousedown="move('01');" id='id01'> </button></th>
<th><button onmousedown="move('02');" id='id02'> </button></th>
<th>
<button onmousedown="move('00');" id='id00'> </button>
</th>
<th>
<button onmousedown="move('01');" id='id01'> </button>
</th>
<th>
<button onmousedown="move('02');" id='id02'> </button>
</th>
</tr>
<tr>
<th><button onmousedown="move('10');" id='id10'> </button></th>
<th><button onmousedown="move('11');" id='id11'> </button></th>
<th><button onmousedown="move('12');" id='id12'> </button></th>
<th>
<button onmousedown="move('10');" id='id10'> </button>
</th>
<th>
<button onmousedown="move('11');" id='id11'> </button>
</th>
<th>
<button onmousedown="move('12');" id='id12'> </button>
</th>
</tr>
<tr>
<th><button onmousedown="move('20');" id='id20'> </button></th>
<th><button onmousedown="move('21');" id='id21'> </button></th>
<th><button onmousedown="move('22');" id='id22'> </button></th>
<th>
<button onmousedown="move('20');" id='id20'> </button>
</th>
<th>
<button onmousedown="move('21');" id='id21'> </button>
</th>
<th>
<button onmousedown="move('22');" id='id22'> </button>
</th>
</tr>
</table>
</body>

View File

@ -8,7 +8,17 @@
width: 50px;
}
button
{
height: 40px;
width: 40px;
}
*
{
text-align: center;
background-color: black;
color: white;
}