diff options
| author | Alexis Hovorka <[email protected]> | 2020-11-04 15:50:15 -0700 | 
|---|---|---|
| committer | Alexis Hovorka <[email protected]> | 2020-11-04 15:50:15 -0700 | 
| commit | 74f7f2d1a59286f213866609de69c0ffd75eb833 (patch) | |
| tree | 2e90931b4ffab24d1ff42accb25cca5b4ccb5e62 /public/index.html | |
| parent | d5af5379ce3bcb7d9e158c52b430faa945e39694 (diff) | |
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 20 | 
1 files changed, 19 insertions, 1 deletions
diff --git a/public/index.html b/public/index.html index 88cf66d..28ace1d 100644 --- a/public/index.html +++ b/public/index.html @@ -12,7 +12,25 @@      <link rel="stylesheet" href="style.css">    </head>    <body> -    <h1>nomicvote</h1> +    <section id="main"> +      <h1>nomicvote</h1> + +      <div id="buttons"> +        <button id="yes-btn">Yes</button> +        <button id="no-btn">No</button> +        <button id="pass-btn">Pass</button> +      </div> +    </section> + +    <div class="vote-bar dom-grn" style="width:100px"> +      <div class="red" style="width:40%"></div> +      <div class="grn" style="width:40%"></div> +    </div> + +    <div> +      <div class="fab"></div> +      <div class="fab"></div> +    </div>      <script src="sock.js"></script>      <script src="main.js"></script>  | 
