-
Notifications
You must be signed in to change notification settings - Fork 20
/
styles.css
executable file
·166 lines (139 loc) · 3.08 KB
/
styles.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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* classes without the que prefix are used in the
question editing form
*/
.gapfill .hascorrect {
background: lightblue;
border: solid thin black;
}
.gapfill .hasnocorrect {
border: solid thin black;
box-shadow: 3px 3px #7bc1f7;
font-style: italic;
}
.gapfill .attobackground {
background: lightgrey;
border-radius: .25rem;
border: 1px solid rgba(0, 0, 0, .15);
color: #55595c;
display: block;
height: 100%;
left: 0;
line-height: 1.25;
padding: .5rem .75rem;
position: absolute;
top: 0;
width: 100%;
}
.gapfill .item {
background: white;
}
/* elements shown via renderer.php at runtime */
.que.gapfill span.gapfeedbackincorrect {
background: #faa;
background-color: #faa;
border-radius: 0.25em;
box-shadow: 2px 2px #7bc1f7;
color: darkslategray;
}
.que.gapfill span.gapfeedbackcorrect {
background: #afa;
background-color: #afa;
border-radius: 0.25em;
box-shadow: 2px 2px #7bc1f7;
color: darkslategray;
}
/* the gap where answers are dropped/keyed in */
.que.gapfill input[type=text] {
background: white;
border: solid black thin;
border-radius: 4px;
color: black;
margin-bottom: 1px;
margin-top: 1px;
padding: 1px;
display: inline-block;
height: inherit;
}
/* glow a little around the border */
.que.gapfill input.droptarget:hover {
box-shadow: 0 0 8px #7bc1f7;
}
.que.gapfill input.droptarget:focus {
box-shadow: 0 0 8px #7bc1f7;
}
.que.gapfill input.droptarget {
text-align: center;
cursor: pointer;
}
.que.gapfill div.answeroptions {
margin-bottom: 15px;
}
.que.gapfill span.draggable.answers {
background: white;
border: solid 1px;
box-shadow: 3px 3px 4px #000;
cursor: pointer;
display: inline-block;
margin: 1px;
margin-right: 4px;
padding-left: 4px;
padding-right: 4px;
vertical-align: middle;
z-index: 3;
border-radius: 4px;
width: max-content;
}
.que.gapfill span.draggable.answers.hide {
display: none;
}
.que.gapfill span.draggable.answers:hover {
box-shadow: 2px 2px 6px #000;
}
/*Displays the correct answer in delimiters if an
incorrec answer was entered */
.que.gapfill span.aftergapfeedback {
color: green;
font-style: italic;
font-weight: bold;
}
/* styling the dropdowns*/
.que.gapfill.qtext select {
border: solid black thin;
border-radius: 3px;
color: black;
padding-bottom: 1px;
padding-top: 1px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.gapfilltable td {
border: solid;
border-width: thin;
}
.gapfillfirstcol {
background-color: #bcbbbb;
}
.gapfillcol {
background-color: lightgray;
}
.gapfilltable th {
background-color: lightgray;
border: solid;
border-width: thin;
}
.gapfilltable caption {
border-bottom: solid;
border-width: thin;
}
.que.gapfill input.correctduplicate {
background-color: #ff0;
}
.que.gapfill input.correct {
background-color: #afa;
}
.que.gapfill select.incorrect {
background-color: #faa;
}
.que.gapfill input.incorrect {
background-color: #faa;
}