aboutsummaryrefslogtreecommitdiffstats
path: root/src/template.html
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2019-11-09 13:28:17 +0000
committers-ol <s-ol@users.noreply.github.com>2019-11-09 13:28:17 +0000
commit1e542ce0fabd2148035050efe3d7653743a2eaae (patch)
treeb4af12bf51049efc9ece02da910f9438dc27cea0 /src/template.html
downloadleap-finger-scan-1e542ce0fabd2148035050efe3d7653743a2eaae.tar.gz
leap-finger-scan-1e542ce0fabd2148035050efe3d7653743a2eaae.zip
initial commit
Diffstat (limited to 'src/template.html')
-rw-r--r--src/template.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/template.html b/src/template.html
new file mode 100644
index 0000000..f071025
--- /dev/null
+++ b/src/template.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title><%= htmlWebpackPlugin.options.title %></title>
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <style>
+ body {
+ display: flex;
+ margin: 0;
+ padding: 0;
+
+ width: 100vw;
+ height: 100vh;
+
+ flex-direction: column;
+ }
+
+ header {
+ display: flex;
+
+ justify-content: space-between;
+
+ height: 150px;
+ flex: 0 0 auto;
+ }
+
+ #main {
+ flex: 1 1 0;
+ }
+ </style>
+</head>
+<body>
+ <header>
+ <canvas id="graphs_a"></canvas>
+ <canvas id="graphs_b"></canvas>
+ <div id="controls"></div>
+ </header>
+ <canvas id="main"></canvas>
+</body>
+</html>