-
Notifications
You must be signed in to change notification settings - Fork 2
/
inspect.html
61 lines (59 loc) · 1.06 KB
/
inspect.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
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Offset Study</title>
<script src="paperjs/src/load.js"></script>
<script src="test.js"></script>
<style>
#side{
position: absolute;
width: 150px;
top: 0px; right: 0px;
height: 100%;
padding: 0;
background-color: #A1A194;
overflow-y: scroll;
z-index: 1000;
}
#list{
list-style: none;
padding: 0;
}
#list li{
padding: 0;
margin: 0;
min-height: 25px;
}
#list li a{
text-decoration: none;
padding-left: 20px;
display: block;
font-family: "Lucida Grande", sans-serif;
font-size: 12px;
line-height: 25px;
color: #464646;
}
#list li:hover a{
background-color: #5B605F;
color: #FFFFFA;
}
#list li:active a, #list li.active a{
background-color: #BB5500;
color: #FFFFFA;
}
#cvs{
background-color: #FFFFFA;
width: 100%;
height: 100%;
}
</style>
</head>
<body style="margin:0; padding: 0">
<div id="side">
<ul id="list">
</ul>
</div>
<canvas id="cvs" resize></canvas>
</body>
</html>