aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2018-08-10 11:29:43 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2018-08-10 11:29:43 +0200
commit708b516d9af201fc30484e4d15dba27a3288087f (patch)
tree88fe8e0972192203fe774dcd751002301783d6b7 /tools
parentb30322867b7283a3c57a15383e23dec8c1815595 (diff)
downloadmitjafelicijan.com-708b516d9af201fc30484e4d15dba27a3288087f.tar.gz
content update
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>