blob: c915320d5f91678bca28fa787a8901f3c399de5d (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
font-weight: normal;
line-height: 18px;
color: #404040;
}
.clearfix {
clear: both;
}
.tabs li {
text-align: center;
width: 33%;
}
.tabs li:last-child {
width: 34%;
}
.tabs > .active > a {
border: 0;
background: lightgreen;
}
.tabs > .active > a:hover {
border: 0;
background: green;
color: #ffffff;
}
.tabs li a {
border-radius: 0;
margin-right: 0;
}
.tabs {
border: 1px solid #ddd;
}
#progress {
background: red;
}
#content-left{
text-align: center;
background: grey;
}
#content-right{
text-align: center;
background: grey;
}
#selectors {
margin-left: 0;
background: #fafafa;
padding: 7px 0;
border: 2px solid #f5f5f5;
}
#selectors .span4 {
margin-left: 0;
}
#id_question_type {
width: 100%;
}
#id_marks {
width: 100%;
}
#fixed-questions .span7 > div,
#random-questions .span7 > div{
background: #f5f5f5;
height: 200px;
border: 1px solid #333333;
padding: 5px;
}
#fixed-available,
#random-available {
height: 125px;
min-height: 125px;
overflow-y: scroll;
margin-bottom: 15px;
}
#fixed-added,
#random-added {
height: 160px;
overflow-y: scroll;
}
#fixed-added hr,
#random-added hr {
margin: 5px 0 4px;
}
.qcard {
position: relative;
background: #ffffff;
padding: 5px;
margin: 5px 5px;
box-shadow: 1px 1px 5px #cccccc;
-webkit-box-shadow: 1px 1px 5px #cccccc;
-moz-box-shadow: 1px 1px 5px #cccccc;
-o-box-shadow: 1px 1px 5px #cccccc;
}
.qcard ul {
margin-bottom: 5px;
}
.qcard .remove {
position: absolute;
top: 3px;
right: 3px;
padding: 1px 3px;
text-decoration: none;
color: #ffffff;
background: #ff4136;
border-radius: 3px;
font-weight: bold;
}
.qcard .remove:hover {
background: #333333;
}
.red-alert {
border: 2px solid red;
}
#myModal .qcard .remove{
display: none;
}
.well{
padding: 5px;
}
|