aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.html
blob: b29263e87932743d7541ae5c12116234ac4954af (plain) (blame)
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
39
40
41
42
43
44
45
46
<!doctype html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width" />
    <link rel="stylesheet" href="style.css" />
    <title>Infinite Apply</title>
  </head>
  <body>
    <div class="popup">
      <svg id="popupClose" class="feather">
        <use href="feather-sprite.svg#x" />
      </svg>
      <div id="popupText"></div>
    </div>
    <div class="main">
      <footer>
        <svg id="clean" class="feather">
          <use href="feather-sprite.svg#trash" />
        </svg>
        <svg id="restart" class="feather">
          <use href="feather-sprite.svg#refresh-ccw" />
        </svg>
        <svg id="help" class="feather">
          <use href="feather-sprite.svg#help-circle" />
        </svg>
        <svg id="github" class="feather">
          <use href="feather-sprite.svg#github" />
        </svg>
        <svg id="support" class="feather">
          <use href="feather-sprite.svg#heart" />
        </svg>
      </footer>
    </div>
    <div class="sidebar">
      <div class="inventory"></div>
      <input
        class="search"
        type="text"
        placeholder="Filter... (e.g. (\(0 0) \(0 0)))"
      />
    </div>
    <script src="https://bernardo-castilho.github.io/DragDropTouch/DragDropTouch.js"></script>
    <script src="script.js"></script>
  </body>
</html>