aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
blob: 28ace1d56a26954042a8ff6d67701c8eff7566ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="theme-color" content="#fff">
    <title>nomicvote</title>

    <link rel="icon" href="/favicon.png" type="image/png">
    <link rel="icon" href="/favicon.svg" type="image/svg+xml">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik:400,500&display=swap">
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
    <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>
  </body>
</html>