aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html21
1 files changed, 15 insertions, 6 deletions
diff --git a/index.html b/index.html
index cc12618..eac7bc9 100644
--- a/index.html
+++ b/index.html
@@ -9,15 +9,24 @@
<link rel="stylesheet" type="text/css" href="./table-style.css"></link>
</head>
<body>
-
- <input id="run-query" type="button" value="Run"></input>
+ <div class="flex-wrapper">
+ <div class="row header">
+ <input id="run-query" type="button" value="Run"></input>
+ </div>
+
- <div id="editor"></div>
+ <div class="row content">
+ <div id="editor" class="editor-row split-row"></div>
+
+ <div class="results-row split-row">
+ <table id="result-table" width="100%"></table>
+ </div>
+ </div>
- <div class="results">
- <table id="result-table" width="100%"></table>
+ <div class="row footer">
+ some status
+ </div>
</div>
-
<script>
require("./renderer.js");
</script>