-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
64 lines (54 loc) · 890 Bytes
/
main.css
File metadata and controls
64 lines (54 loc) · 890 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
.canvasWrap {
position: absolute;
left: 321px;
right: 0;
overflow: hidden;
height: 100%;
}
.info {
position: absolute;
left: 0;
top: 0;
bottom: 0;
height: 100%;
width: 320px;
float: left;
border-right: 1px solid black;
overflow: hidden;
}
.items {
height: 100%;
overflow-y: auto;
}
.items p {
margin-bottom: 0;
padding-bottom: 0;
}
.category {
margin-top: 4px;
padding-top: 4px;
border-top: 1px solid black;
}
.item {
margin-top: 4px;
padding-top: 4px;
border-bottom: 1px solid #888;
padding-bottom: 8px;
margin-bottom: 8px;
padding-left: 20px;
}
.item:last-child {
border-bottom-width: 0;
}
.colour-box {
display: inline-block;
width: 10px;
height: 10px;
border: 1px solid black;
}
input {
width: 60px;
}
input[type="range"] {
width: 150px;
}