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
| body.dragging, body.dragging * {
| cursor: move !important;
| }
|
| .dragged {
| position: absolute;
| opacity: 0.5;
| z-index: 2000;
| }
|
| ol.example li.placeholder {
| position: relative;
| /** More li styles **/
| }
| ol.example li.placeholder:before {
| position: absolute;
| /** Define arrowhead **/
| }
|
| .problem_render {
| display: inline-block;
| margin: 6px;
| padding: 5px;
| border: 1px solid #cccccc;
| background: #eeeeee;
| }
|
| /*ol li.problem:after {
| display: inline-block;
| content: '-ALI-';
| }*/
|
| .ans_correct:after{
| content: "\2713";
| color: green;
| margin-left:3px;
| }
|
|