forked from Wunderbyte-GmbH/moodle-local_catquiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
116 lines (101 loc) · 2.11 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
.catscales-dashboard.grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr;
grid-gap: 10px;
margin-bottom: 50px;
margin-top: 50px;
}
#page-local-catquiz-manage_catscales .tab-content {
margin-top: 50px;
}
#page-local-catquiz-manage_catscales .last-edits {
margin-top: 50px;
}
.catmanager-summary.grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 10px;
margin-bottom: 50px;
margin-top: 50px;
}
canvas {
max-width: 60%;
}
.modal-content.preview-question .text_to_html {
margin: 40px;
}
#page-local-catquiz-edit_testitem #testitemdashboard_contextselector .felement {
flex: inherit;
width: inherit;
}
.catquiz-legend {
text-align: left;
}
.catquiz-legend-description {
margin-left: 1em;
}
.catquiz-legend-symbol {
display: inline-block;
width: 50px;
height: 15px;
}
.catquiz-feedbackbar {
margin-top: 5em;
margin-bottom: 5em;
}
.catquiz-feedbackbar-bar {
position: relative;
width: 100%;
height: 60px;
border: 4px solid black;
}
.catquiz-feedbackbar-uppertext {
position: absolute;
width: 100%;
top: -3em;
text-align: center;
}
.catquiz-feedbackbar-lowertext {
position: absolute;
width: 100%;
top: 4em;
text-align: center;
}
span.wb_colourpick .colourpickercircle,
span.wb_colourpick .colourpickercircle {
width: 25px;
height: 25px;
border-radius: 50%;
display: inline-block;
margin: 0 5px 0 5px;
border: 1px solid black;
}
span.wb_colourpick .colourpickercircle:hover,
span.wb_colourpick.colourpickercircle:hover {
border-color: orange;
}
span.wb_colourpick .colourpickercircle.selected,
span.wb_colourpick.colourpickercircle.selected {
border: 3px solid white;
outline: 5px solid black;
}
.catquiz_feedback {
text-align: left;
}
input.disabled {
cursor: not-allowed;
background-color: #e9ecef;
opacity: 1;
pointer-events: none;
}
.card-body,
.card-header {
cursor: initial;
}
.card-body-disabled,
div[contenteditable="false"] {
cursor: not-allowed;
background-color: #e9ecef;
opacity: 1;
}