aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.html
diff options
context:
space:
mode:
authorMarvin Borner2024-03-05 00:22:06 +0100
committerMarvin Borner2024-03-05 00:39:24 +0100
commit1d0367d63505efa32d804bd686bbf3ee6a4b017b (patch)
tree519da5e87b64a15909e1e611eaaa4ff10d3a0bff /index.html
Surprisingly fun!
Diffstat (limited to 'index.html')
-rw-r--r--index.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..f974e6e
--- /dev/null
+++ b/index.html
@@ -0,0 +1,43 @@
+<!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="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>