diff options
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>  | 
