blob: 41404c279ef9af8f4f8bed8a8e0965410daf8ca6 (
plain)
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
|
* { box-sizing: border-box; }
body {
font-family: helvetica;
font-weight: 300;
background: #fbfbfb;
font-size: 12px;
}
.dragging { cursor: -webkit-grabbing !important; }
.ui-sortable-helper { cursor: -webkit-grabbing !important; }
#controls {
position: fixed;
top: 0; right: 0;
padding: 10px;
}
#lists {
display: flex;
flex-direction: row;
}
#lists h3 {
margin: 0 0 5px 0;
width: 40px;
text-align: right;
padding-right: 5px;
white-space: pre;
}
.list span {
display: inline-block;
min-width: 40px;
text-align: right;
padding-right: 5px;
}
.list > div > div {
padding-right: 10px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
}
.list div div:nth-child(odd) {
background-color: #eee;
}
.list div div:nth-child(even) {
background-color: #fff;
}
.list div div {
cursor: move;
cursor: grab;
cursor: -webkit-grab;
}
.list div div.pair:nth-child(even) {
background-color: #444;
color: #fff;
}
.list div div.pair:nth-child(odd) {
background-color: #333;
color: #fff;
}
|