qti3-item-player-vue3 0.2.13 → 0.2.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,6 +7,7 @@
|
|
7
7
|
|
8
8
|
body {
|
9
9
|
--blue: #3d8ef8;
|
10
|
+
--navy: #003398;
|
10
11
|
--indigo: #564ab1;
|
11
12
|
--purple: #6f42c1;
|
12
13
|
--pink: #e83e8c;
|
@@ -22,6 +23,8 @@ body {
|
|
22
23
|
--white: #fff;
|
23
24
|
--gray: #7c8a96;
|
24
25
|
--gray-dark: #343a40;
|
26
|
+
--medgray: #e5e5e5;
|
27
|
+
--darkgray: #666;
|
25
28
|
--primary: #3d8ef8;
|
26
29
|
--success: #11c46e;
|
27
30
|
--info: #0db4d6;
|
@@ -38,7 +41,6 @@ body {
|
|
38
41
|
--breakpoint-lg: 992px;
|
39
42
|
--breakpoint-xl: 1200px;
|
40
43
|
--font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
41
|
-
--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
42
44
|
--foreground: var(--darker);
|
43
45
|
--background: var(--white);
|
44
46
|
--secondary: #dbdbdb;
|
@@ -63,7 +65,72 @@ body {
|
|
63
65
|
-webkit-tap-highlight-color: rgba(black, 0);
|
64
66
|
}
|
65
67
|
|
66
|
-
|
68
|
+
.theme-default-reverse {
|
69
|
+
color: var(--background);
|
70
|
+
background-color: var(--foreground);
|
71
|
+
}
|
72
|
+
|
73
|
+
.theme-high-contrast {
|
74
|
+
color: var(--black);
|
75
|
+
background-color: var(--white);
|
76
|
+
}
|
77
|
+
|
78
|
+
.theme-high-contrast-reverse {
|
79
|
+
color: var(--white);
|
80
|
+
background-color: var(--black);
|
81
|
+
}
|
82
|
+
|
83
|
+
.theme-black-rose {
|
84
|
+
color: var(--black);
|
85
|
+
background-color: var(--rose);
|
86
|
+
}
|
87
|
+
|
88
|
+
.theme-rose-black {
|
89
|
+
color: var(--rose);
|
90
|
+
background-color: var(--black);
|
91
|
+
}
|
92
|
+
|
93
|
+
.theme-black-cyan {
|
94
|
+
color: var(--black);
|
95
|
+
background-color: var(--lblue);
|
96
|
+
}
|
97
|
+
|
98
|
+
.theme-cyan-black {
|
99
|
+
color: var(--lblue);
|
100
|
+
background-color: var(--black);
|
101
|
+
}
|
102
|
+
|
103
|
+
.theme-black-cream {
|
104
|
+
color: var(--black);
|
105
|
+
background-color: var(--lchiffon);
|
106
|
+
}
|
107
|
+
|
108
|
+
.theme-cream-black {
|
109
|
+
color: var(--lchiffon);
|
110
|
+
background-color: var(--black);
|
111
|
+
}
|
112
|
+
|
113
|
+
.theme-medgray-darkgray {
|
114
|
+
color: var(--medgray);
|
115
|
+
background-color: var(--darkgray);
|
116
|
+
}
|
117
|
+
|
118
|
+
.theme-darkgray-medgray {
|
119
|
+
color: var(--darkgray);
|
120
|
+
background-color: var(--medgray);
|
121
|
+
}
|
122
|
+
|
123
|
+
.theme-yellow-blue {
|
124
|
+
color: var(--yellow);
|
125
|
+
background-color: var(--navy);
|
126
|
+
}
|
127
|
+
|
128
|
+
.theme-blue-yellow {
|
129
|
+
color: var(--navy);
|
130
|
+
background-color: var(--yellow);
|
131
|
+
}
|
132
|
+
|
133
|
+
/* =========================================
|
67
134
|
QTI 3 shared css
|
68
135
|
1. Display
|
69
136
|
2. Special Flex styles
|
@@ -76,7 +143,7 @@ body {
|
|
76
143
|
9. Float Styles
|
77
144
|
10. Layout
|
78
145
|
11. QtiAssessmentItem component utilities
|
79
|
-
|
146
|
+
========================================= */
|
80
147
|
|
81
148
|
/* ==========
|
82
149
|
Display css
|