From f00c3aa40e107332b5a7d672ae8b939f0212031c Mon Sep 17 00:00:00 2001 From: Christian Heller <c.heller@plomlompom.de> Date: Sun, 22 Nov 2020 04:42:25 +0100 Subject: [PATCH] Improve move button alignments. --- rogue_chat_nocanvas_monochrome.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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> -- 2.30.2