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
|
.drag {
background-color: blue;
width: 100px;
padding: 5px;
margin: 10px;
border: 1px solid black;
}
#dropzones {
margin-top: 100px;
display: inline;
}
.drop {
background-color: red;
width: 100px;
padding: 5px;
margin: 10px;
border: 1px solid black;
display: inline;
}
.droptrans {
width: 100px;
padding: 5px;
margin: 10px;
border: 1px solid black;
}
.drop-hover {
border: 2px solid green;
}
.drop-active {
background-color: #FF79ED;
}
.drag-select {
background-color: green;
}
#drag-5 {
position: fixed;
top: 100px;
left: 200px;
}
#drag-6 {
position: absolute;
top: 100px;
left: 350px;
}
#drag-7 {
position: relative;
top: -100px;
left: 500px;
}
#drop-6 {
display: inline;
}
#droptext {
margin-top: 20px;
border: 1px dashed black;
padding: 10px;
}
|