aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/editor/index.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/editor/index.html b/tools/editor/index.html
new file mode 100644
index 0000000..6dcbbd5
--- /dev/null
+++ b/tools/editor/index.html
@@ -0,0 +1,29 @@
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <title>Editor</title>
8</head>
9<body>
10
11 <style>
12 textarea {
13 display: block;
14 position: fixed;
15 left: 0;
16 top: 0;
17 right: 0;
18 bottom: 0;
19 width: 100%;
20 height: 100%;
21 padding: 20px;
22 font: 16px monospace;
23 outline: none;
24 border: 0;
25 }
26 </style>
27 <textarea></textarea>
28</body>
29</html>