-
Notifications
You must be signed in to change notification settings - Fork 1
/
aswh.css
executable file
·41 lines (37 loc) · 1.01 KB
/
aswh.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
body {
cursor: url('cursor_active.png') 22 28, auto;/* TODO: implement inactive cursor */
}
[data-type='LR'] { background-image: url('pipeLR.png'); }
[data-type='TB'] { background-image: url('pipeTB.png'); }
[data-type='TR'] { background-image: url('pipeTR.png'); }
[data-type='BR'] { background-image: url('pipeBR.png'); }
[data-type='BL'] { background-image: url('pipeBL.png'); }
[data-type='TL'] { background-image: url('pipeTL.png'); }
.setup td {
background-image: none;
}
#pipeArea {
text-align: center;
}
#pipeArea img { /* Weird HTML5 space hack */
margin-bottom: -4px;
}
#pipeArea table {
margin: 0 auto 1em auto;
}
#pipeArea tr:first-child > td:first-child {
background: url('pipeStart.png') no-repeat left top;
width: 94px;
}
#pipeArea tr:first-child > td:last-child {
background: url('pipeEnd.png') no-repeat right bottom;
width: 184px;
}
#pipeArea td {
height: 50px;
width: 50px;
margin-bottom: 0;
padding: 0;
vertical-align: top;
}
.unconnected {opacity: 0.2;}