options.htmlon commit fix options loading bug & drag handle alignment (ef8755f)
   1<!DOCTYPE html>
   2<html>
   3
   4  <head>
   5
   6    <title>newtab</title>
   7    <script src="options.js"></script>
   8    <style>
   9      body {
  10        padding-left: 65px;
  11        padding-right: 65px;
  12      }
  13
  14      button {
  15        float: right;
  16        width: 65px;
  17      }
  18
  19      table {
  20        text-align: right;
  21      }
  22    </style>
  23
  24  </head>
  25
  26  <body>
  27
  28    <table>
  29      <tr>
  30        <td>Background</td><td><input type="text" id="bg"></td>
  31      </tr>
  32      <tr>
  33        <td>Foreground</td><td><input type="text" id="fg"></td>
  34      </tr>
  35      <tr>
  36        <td>Hover</td><td><input type="text" id="hr"></td>
  37      </tr>
  38    </table>
  39
  40    <button id="save">Save</button>
  41
  42    <p>Made by<br /><a href="https://git.lorimer.id.au/newtab.git">Andrew Lorimer</a></p>
  43
  44  </body>
  45
  46</html>