-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.css
58 lines (58 loc) · 798 Bytes
/
demo.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
58
.container {
width: 80%;
height: 80%;
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
margin: auto;
border: 1px solid;
}
#imageHolder {
position: relative;
left: 0px;
top: 0px;
}
.answerContainer {
position: absolute;
right: 0px;
width: 285px;
height: 400px;
top: 0px;
}
.answerHolder {
width: 280px;
height: 70px;
border: 1px solid;
margin-top: 5px;
}
.rectangle {
position: absolute;
width: 50px;
height: 50px;
border: 1px solid black;
}
.droppable {
border:1px solid black;
}
.answerText {
position: absolute;
left: 60px;
margin-top: 6px;
}
.crossBtn {
margin-top: -5px;
cursor: pointer;
width: 5px;
height: 5px;
}
.ui-draggable-handle{
cursor: pointer;
}
.ui-draggable-disabled{
cursor: auto !important;
}
#dropHolder{
position:absolute;
}