-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (52 loc) · 1.49 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
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>0x2a.re | Websarum</title>
<script type="text/javascript" src="main.js"></script>
<style>
body {
margin: 0;
background-color: black;
font-family: sans-serif;
overflow: hidden;
}
.drag-window {
position: absolute;
left: 20px;
top: 20px;
width: 500px;
background-color: rgba(62, 62, 78, 0.9);
color: white;
resize: both;
overflow: hidden;
border-radius: 5px;
user-select: none;
}
.drag-header {
background-color: rgb(48, 48, 90);
height: 20px;
padding: 5px;
cursor: move;
}
.drag-body {
padding: 5px;
}
input {
display: inline-block;
vertical-align: middle;
}
</style>
</head>
<body>
<div id="param-window" class="drag-window">
<div class="drag-header">
Parameters (p to toggle)
</div>
<div class="drag-body">
<div id="param-list"></div>
</div>
</div>
<canvas id="canvas" width="320" height="180"></canvas>
</body>
</html>