diff options
author | Alexis Hovorka <[email protected]> | 2022-02-19 22:56:15 -0700 |
---|---|---|
committer | Alexis Hovorka <[email protected]> | 2022-02-19 22:56:15 -0700 |
commit | 7e41581a34fe4a479dbd32fc44dcbb16f5540493 (patch) | |
tree | 713f547bd0f5e93198af4bce58254ba38b465cb9 /public/index.html | |
parent | 8a943500d97598a0b49ef655dc1b5484fe5e83d8 (diff) |
[feat] Finish basic styles
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/public/index.html b/public/index.html index 1c95383..0010c06 100644 --- a/public/index.html +++ b/public/index.html @@ -56,19 +56,19 @@ </head> <body> <header> - <button id="help-btn">?</button> - <button id="settings-btn">%</button> - <button id="stats-btn">#</button> + <!--button id="help-btn">?</button--> + <!---button id="settings-btn">%</button--> + <!--button id="stats-btn">#</button--> <h1>Wordly</h1> </header> - <div id="board"></div> + <section id="board"></section> <table id="keyboard"> <tr> - <td data-key="q" colspan=2>Q</td> - <td data-key="w" colspan=2>W</td> - <td data-key="e" colspan=2>E</td> + <td data-key="q" colspan=2 class="absent">Q</td> + <td data-key="w" colspan=2 class="present">W</td> + <td data-key="e" colspan=2 class="found">E</td> <td data-key="r" colspan=2>R</td> <td data-key="t" colspan=2>T</td> <td data-key="y" colspan=2>Y</td> @@ -89,7 +89,7 @@ <td data-key="l" colspan=2>L</td> <td></td> </tr><tr> - <td data-key="" colspan=3>ENTER</td> + <td data-key="bspc" colspan=3></td> <td data-key="z" colspan=2>Z</td> <td data-key="x" colspan=2>X</td> <td data-key="c" colspan=2>C</td> @@ -97,7 +97,7 @@ <td data-key="b" colspan=2>B</td> <td data-key="n" colspan=2>N</td> <td data-key="m" colspan=2>M</td> - <td data-key="" colspan=3>BSPC</td> + <td data-key="enter" colspan=3></td> </tr><tr> <td></td> <td></td> @@ -122,6 +122,10 @@ </tr> </table> + <footer> + <p>Copyleft <span style="display:inline-block;transform:rotate(180deg)">©</span> 2022 Alexis Hovorka — <a href="https://github.com/alexisspacegirl/wordly">GitHub</a></p> + </footer> + <script src="main.js"></script> </body> </html> |