forked from zauner/vvvv.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inspektor.html
61 lines (61 loc) · 1.19 KB
/
inspektor.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
<html>
<head>
<title>Herr Inspektor</title>
<style type="text/css">
body{
font-family:"Lucida Sans Unicode", sans-serif;
margin:0;
font-size:12px;
}
a.pin{
overflow:hidden;
font-size:12px;
display:block;
color:black;
text-decoration:none;
}
a.pin.active{
background-color:#BEBEBE;
}
.heading{
color:white;
background-color:rgb(90,90,90);
height:2em;
}
.leftcol{
height:100%;
background-color:#EEEEEE;
margin: 0;
float:left;
width:40%;
}
.rightcol{
height:100%;
background-color:#BEBEBE;
margin: 0;
float:right;
width:60%;
}
.row{
padding-top:3px;
padding-left:3px;
}
.row{
border-bottom: 1px solid rgb(90,90,90);
height: 2em;
}
.readonlyvalue{
color:#666666;
font-style:italic;
}
input{
font-size:12px;
border: 0;
}
</style>
</head>
<body>
<div class="leftcol" id="pins"></div>
<div class="rightcol" id="values"></div>
</body>
</html>