-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 1.61 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sortr</title>
<link rel='stylesheet' type='text/css' href='https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/1.12.1/semantic.min.css'/>
<style type='text/css'>
body {
padding-top: 2em;
}
h1 {
font-size: 5rem !important;
margin-bottom: 0 !important;
}
#input, #output {
font-family: monospace;
min-height: 20em;
}
</style>
</head>
<body>
<form id='input-form' class='ui page grid form'>
<h1 class='ui header'>sortr</h1>
<div id='messages' class='ui sixteen wide column'></div>
<div class='ui row'>
<div class='ui eight wide column'>
<div class='ui field'>
<label>Depth</label>
<select id='depth' class='ui selection'>
<option value='-2'>unlimited</option>
</select>
</div>
</div>
</div>
<div class='ui form row'>
<div class='ui eight wide column field'>
<label>Input</label>
<textarea id='input' class='ui field'></textarea>
</div>
<div class='ui eight wide column field'>
<label>Output</label>
<textarea id='output' readonly='readonly'></textarea>
</div>
</div>
<div class='ui row'>
<div class='ui sixteen wide column right aligned'>
<a href='https://github.com/jmtoball/sortr'>sortr</a> by <a href='http://jmtoball.github.io/'>jmtoball</a>
</div>
</div>
</form>
<script type="text/javascript" src="sorter.js"></script>
</body>
</html>