-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (66 loc) · 937 Bytes
/
style.css
File metadata and controls
66 lines (66 loc) · 937 Bytes
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
body {
margin: 0;
font-family: Arial, sans-serif;
}
#sidebar {
width: 150px;
background: #f0f0f0;
padding: 10px;
box-sizing: border-box;
position: fixed;
top: 0;
bottom: 0;
overflow-y: auto;
}
#workspace-container {
margin-left: 150px;
position: relative;
height: 100vh;
}
#workspace {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #fff;
overflow: hidden;
}
#gates svg {
pointer-events: none;
}
.gate {
position: absolute;
border: 1px solid #444;
padding: 5px;
background: #ddd;
cursor: move;
user-select: none;
}
.pin {
width: 10px;
height: 10px;
background: #666;
border-radius: 50%;
position: absolute;
}
.input-pin {
left: -5px;
}
.output-pin {
right: -5px;
}
.switch {
background: #ffe0e0;
}
.light {
background: #e0ffe0;
}
svg#wires {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}