-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
33 lines (26 loc) · 1.43 KB
/
test.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
<html>
<head>
<style>
body {background: #111; color: #ccc; font-family: verdana; font-size: 10px;}
input {background: #333; color: #ccc; border: 0px; padding: 5px; width: 300px;}
textarea {background: #333; color: #ccc; border: 0px; padding: 5px; width: 300px; height: 300px;}
.selected {background: #777}
.label {float: left; width: 50px; margin-right: 10px;}
#tree {left: 20px; top: 20px; width: 180px; border: solid #999 1px; padding: 10px; position: absolute;}
#properties {left: 240px; top: 20px; border: solid #999 1px; padding: 10px; position: absolute;}
#tree2 {left: 20px; top: 440px; width: 180px; border: solid #999 1px; padding: 10px; position: absolute;}
#properties2 {left: 240px; top: 440px; border: solid #999 1px; padding: 10px; position: absolute;}
#save {left: 640px; top: 20px; border: solid #999 1px; padding: 10px; width: 400px; position: absolute;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="data.js"></script>
<script type="text/javascript" src="test.js"></script>
</head>
<body style="margin: 35px">
<div id="tree"></div>
<div id="properties"></div>
<div id="tree2"></div>
<div id="properties2"></div>
<div id="save"></div>
</body>
</html>