summaryrefslogtreecommitdiff
path: root/style.css
blob: ed8b3d16b4296056a637c9b210877c0b92469d87 (about) (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
h1, h2 {
    text-align: center;
}

.container {
    position: relative;
    width: 700px;
    height: 520px;
    margin: 0 auto;
}

ul {
    padding-left: 0;
    border: 2px solid black;
}
ul li {
    list-style: none;
    padding-left: 0;
    height: 20px;
    padding: 4px;
    border: 1px solid #000;
    margin-top: -1px;
    cursor: pointer;
    background: white;
}
ul li:hover {
    background: gray;
}
ul li:first-child, ul li.ui-sortable-helper {
    margin-top: 0;
}

#source, #target {
    position: absolute;
    top: 0;
    height: 493px;
    width: 300px;
}
#source {
    left: 0;
}
#target{
    right: 0;
}
#target.success li {
    background: green;
}