blob: 260abc9dc6c4da5064317d71a8bef0c23809630e (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Munia</title>
<style>
body {
cursor: default;
}
.task {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
cursor: move;
background-color: grey;
border-style: solid;
border-width: medium;
border-radius: 15px;
padding: 4px;
margin: 6px;
}
.task:hover {
background-color:yellow;
}
.board {
background-color: #666;
width: *;
min-height: 300px;
padding: 20px;
}
</style>
</head>
<body id="body">
<div id="wslm_status">Not initialized</div>
<input type="text" id="input_data" value="add title description -1" onfocus="clear()"/>
<input type="button" value="submit" onclick="submit()"/>
<div id="wslm_lastmsg"></div>
</div>
<div id="board" class="board"></div>
<script type="text/javascript" charset="utf-8" src="/proto.js"></script>
</body>
</html>
|