-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpdgui.css
151 lines (131 loc) · 2.34 KB
/
pdgui.css
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
body {
padding:0px;
margin:0px;
background-color:#fff;
list-style:none;
user-select:none !important;
-webkit-user-select:none !important;
-moz-user-select:none !important;
font-family:courier;
}
canvas, input {
border-radius:0px !important;
-webkit-border-radius:0px !important;
-moz-border-radius:0px !important;
}
/* title */
#title {
background-color:#000;
font-family:courier;
letter-spacing:0.1em;
font-weight:bold;
color:#fff;
padding:7px 10px;
font-size:12px;
}
#title a {
float:right;margin-right:30px;color:#fff;text-decoration:none;
}
/* canvas */
#objects, #connections {
position:absolute;
top:20px;
left:0px;
width:1000px;
height:1000px;
}
#connections {
z-index:1;
}
#objects {
z-index:2;
}
#meters {
position:fixed;
bottom:0px;
right:0px;
padding:5px;
}
#dbL, #dbR {
position:absolute;
height:24px;
width:12px;
right:17px;
top:2px;
}
#dbR {
right:3px;
}
#drop_zone {
margin:100px auto;
border:dashed 3px #ccc;
color:#ccc;
font-size:20pt;
width:400px;
text-align:center;
padding:50px;
position:relative;
z-index:10;
}
#demolink {
font-size:11pt
}
#demolink a {
color:#bbb;
}
/* objects */
.pdobject {
min-width:10px;
min-height:10px;
border:solid 1px #777;
display:inline-block;
position:absolute;
box-sizing:border-box;
overflow:hidden;
background-color:#f7f7f7;
}
.objecttext {
font-size:8pt;
font-family:courier;
padding:2px 2px;
}
.inlet, .outlet {
top:0px;
width:7px;
height:2px;
background-color:#000;
/* border:solid 1px black; */
float:right;
position:relative;
display:block;
/*cursor:pointer;*/
}
.outlet {
bottom:0px;
top:auto;
}
/*.inlet:hover, .outlet:hover {
background-color:#1bd;
} */
.inlets {display:table; width:102%; position:absolute; top:0px; left:0px;}
.outlets {display:table; width:102%; position:absolute; bottom:0px; left:0px;}
.inlets ul, .outlets ul {display:table-row; width: 100%}
.inlets li.left, .outlets li.left {display: table-cell; text-align: left; width: 1px; white-space:nowrap;}
.inlets li, .outlets li {display: table-cell; text-align: right; width: auto;}
ul {
-webkit-margin-before: 0em;
-webkit-margin-after: 0em;
}
.msg-cutout {
position:absolute;
right:-7px;
background-color:#fff;
border:solid 1px #000;
top:0px;
height:13px;
width:10px;
border-radius:4px;
-webkit-border-radius:4px;
-moz-border-radius:4px;
z-index:5;
}