convert flexbox to table | colorize boards

This commit is contained in:
2022-01-16 17:19:45 +01:00
parent 1d5cbee9e7
commit ab877ff35b
3 changed files with 82 additions and 47 deletions

View File

@@ -11,22 +11,36 @@
</head>
<body>
<div id="playfield">
<div id="remotediv">
<table id="remote">
</table>
</div>
<div id="remoteauxdiv">
<table id="remoteaux">
</table>
</div>
<div id="localdiv">
<table id="local">
</table>
</div>
<div id="localauxdiv">
<table id="localaux">
</table>
</div>
<table id="maingrids">
<tr id="remotes">
<td id="remotetd" class="mainboards">
<div id="remotediv">
<table class="playfields" id="remote">
</table>
</div>
</td>
<td id="remoteauxtd" class="auxboards">
<div id="remoteauxdiv">
<table class="playfields" id="remoteaux">
</table>
</div>
</td>
</tr>
<tr id="locals">
<td id="localtd" class="mainboards">
<div id="localdiv">
<table class="playfields" id="local">
</table>
</div>
</td>
<td id="localauxtd" class="auxboards">
<div id="localauxdiv">
<table class="playfields" id="localaux">
</table>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>