-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistbuilder.css
57 lines (56 loc) · 885 Bytes
/
listbuilder.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
.listhidden {
display: none;
}
.listcontainer {
}
.bucket {
padding: .2em;
margin: .2em;
display: inline-block;
width: 48%;
height: 10em;
overflow: auto;
}
.unselected {
border: .1em solid gray;
background-color: #cdcdcd;
}
.unselected .label {
background-color: #bcbcbc;
padding: 0.2em;
margin: -0.2em;
margin-bottom: 0.25em;
}
.unselected .label label {
width: 20%;
padding-right: 0.2em;
}
.unselected input {
background-color: #dedede;
border: none;
width: 70%;
}
.unselected .option:before {
content: '+ ';
}
.unselected .option.hidden {
display: none;
}
.unselected a.reset {
display: inline-block;
padding-left: 0.2em;
width: 10%;
}
.selected {
border: .1em solid green;
background-color: #cdffcd;
}
.selected .label {
background-color: #a4cca4;
padding: 0.2em;
margin: -0.2em;
margin-bottom: 0.25em;
}
.selected .option:before {
content: '- ';
}