forked from marcusgreen/moodle-qtype_wordselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (82 loc) · 2.33 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
.que.wordselect input[type=checkbox]{
display:none;
}
.que.wordselect .selectable{
background-attachment: scroll;
background-clip: border-box;
background-image: none;
background-repeat: repeat;
background-position: 0 0;
background-origin: padding-box;
background-size: auto auto;
border:solid thin transparent;
border-radius:0.25em;
cursor:pointer;
display:inline;
white-space:nowrap;
}
.que.wordselect .selected{
background: #cee0f4;
border-radius:0.25em;
background-color:#CBCFD4;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0 0;
background-clip: border-box;
background-origin: padding-box;
background-size: auto auto;
border:solid thin black;
display:inline;
white-space:nowrap;
-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.9);
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.9);
box-shadow: 1px 1px 2px rgba(0,0,0,0.9);
outline:none;
}
.que.wordselect .incorrect{
background-attachment: scroll;
background-color: #f7d0d0;
background-image: none;
background-repeat: repeat;
background-position: 0 0;
background-clip: border-box;
background-origin: padding-box;
background-size: auto auto;
border-radius:0.25em;
border:solid thin black;
color: #b71c1c;
display:inline;
text-decoration: line-through;
white-space:nowrap;
-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.8);
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.8);
box-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
.que.wordselect .correct{
background-color: #EEEE22;
border-radius:0.25em;
background-clip: border-box;
background-origin: padding-box;
background-size: auto auto;
border:solid thin;
white-space:nowrap;
}
.que.wordselect .correctresponse{
background: #9dd8bb;
border-radius:0.25em;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0 0;
background-clip: border-box;
background-origin: padding-box;
background-size: auto auto;
border:solid thin black;
color: #255c41;
display:inline;
white-space:nowrap;
-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.8);
-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.8);
box-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}