From: Christian Heller <c.heller@plomlompom.de> Date: Sun, 22 Nov 2020 03:42:25 +0000 (+0100) Subject: Improve move button alignments. X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bprefix%7D%7D/all?a=commitdiff_plain;h=f00c3aa40e107332b5a7d672ae8b939f0212031c;p=plomrogue2 Improve move button alignments. --- diff --git a/rogue_chat_nocanvas_monochrome.html b/rogue_chat_nocanvas_monochrome.html index 1058663..2ef4f7d 100644 --- a/rogue_chat_nocanvas_monochrome.html +++ b/rogue_chat_nocanvas_monochrome.html @@ -13,18 +13,18 @@ terminal columns: <input id="n_cols" type="number" step=4 min=80 value=80 /> <h3>for mouse players</h3> <table style="float: left"> <tr> - <td><button id="move_upleft">up-left</button></td> - <td><button id="move_up">up</button></td> + <td style="text-align: right"><button id="move_upleft">up-left</button></td> + <td style="text-align: center"><button id="move_up">up</button></td> <td><button id="move_upright">up-right</button></td> </tr> <tr> - <td><button id="move_left">left</button></td> - <td>MOVE</td> + <td style="text-align: right;"><button id="move_left">left</button></td> + <td stlye="text-align: center;">move</td> <td><button id="move_right">right</button></td> </tr> <tr> <td><button id="move_downleft">down-left</button></td> - <td><button id="move_down">down</button></td> + <td style="text-align: center"><button id="move_down">down</button></td> <td><button id="move_downright">down-right</button></td> </tr> </table>