-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdnd.css
More file actions
54 lines (46 loc) · 672 Bytes
/
dnd.css
File metadata and controls
54 lines (46 loc) · 672 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
body, html
{
margin: 0;
padding: 0;
background: #eee;
}
*
{
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
div#droptarget1,
div#droptarget2
{
width: 150em;
height: 20em;
margin: 3em;
border: 1px solid #759;
background: #95f;
font-size: 50%;
overflow: scroll;
position: relative;
padding: .5em;
}
div#dropcover1,
div#dropcover2
{
width: 20em;
height: 7em;
border: 1px solid #000;
background: #000;
opacity: .3;
position: absolute;
top: 3em;
left: 35%;
}
.move
{
z-index: 3;
}
img.move
{
border: 1px solid #000;
}