wizr-quiz 3.0.2 → 3.0.3
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.
- package/dist/assets/patron-bold.woff2 +0 -0
- package/dist/assets/patron-light.woff2 +0 -0
- package/dist/assets/patron-medium.woff2 +0 -0
- package/dist/assets/patron-regular.woff2 +0 -0
- package/dist/assets/patron-thin.woff2 +0 -0
- package/dist/index.css +1222 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.css
ADDED
|
@@ -0,0 +1,1222 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
/* Fonts - included after imports */
|
|
4
|
+
/* Thin (100) */
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Patron";
|
|
7
|
+
src: url("assets/patron-thin.woff2") format("woff2");
|
|
8
|
+
font-weight: 100;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: swap;
|
|
11
|
+
}
|
|
12
|
+
/* Light (300) */
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: "Patron";
|
|
15
|
+
src: url("assets/patron-light.woff2") format("woff2");
|
|
16
|
+
font-weight: 300;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-display: swap;
|
|
19
|
+
}
|
|
20
|
+
/* Regular (400) */
|
|
21
|
+
@font-face {
|
|
22
|
+
font-family: "Patron";
|
|
23
|
+
src: url("assets/patron-regular.woff2") format("woff2");
|
|
24
|
+
font-weight: 400;
|
|
25
|
+
font-style: normal;
|
|
26
|
+
font-display: swap;
|
|
27
|
+
}
|
|
28
|
+
/* Medium (500) */
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: "Patron";
|
|
31
|
+
src: url("assets/patron-medium.woff2") format("woff2");
|
|
32
|
+
font-weight: 500;
|
|
33
|
+
font-style: normal;
|
|
34
|
+
font-display: swap;
|
|
35
|
+
}
|
|
36
|
+
/* Bold (700) */
|
|
37
|
+
@font-face {
|
|
38
|
+
font-family: "Patron";
|
|
39
|
+
src: url("assets/patron-bold.woff2") format("woff2");
|
|
40
|
+
font-weight: 700;
|
|
41
|
+
font-style: normal;
|
|
42
|
+
font-display: swap;
|
|
43
|
+
}
|
|
44
|
+
.question-module_questionHtmlWrapper__Twvia ul {
|
|
45
|
+
list-style-type: disc;
|
|
46
|
+
padding-left: 1.5rem;
|
|
47
|
+
list-style-position: inside;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.question-module_questionHtmlWrapper__Twvia ol {
|
|
51
|
+
list-style-type: disc;
|
|
52
|
+
padding-left: 1.5rem;
|
|
53
|
+
list-style-position: inside;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.question-module_questionText__T-h7Z {
|
|
57
|
+
font-size: var(--quiz-font-size-large, 1.15rem);
|
|
58
|
+
font-weight: var(--quiz-font-weight-bold, 600);
|
|
59
|
+
color: var(--quiz-color-text-primary, #161c20);
|
|
60
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
61
|
+
line-height: 25px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
code {
|
|
65
|
+
font-size: 0.8rem;
|
|
66
|
+
font-weight: normal;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@media (max-width: 1320px) {
|
|
70
|
+
.question-module_questionText__T-h7Z {
|
|
71
|
+
font-size: var(--quiz-font-size-medium, 1rem);
|
|
72
|
+
}
|
|
73
|
+
.question-module_questionHtmlWrapper__Twvia code {
|
|
74
|
+
font-size: 0.8rem;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@media (max-width: 768px) {
|
|
79
|
+
.question-module_questionText__T-h7Z {
|
|
80
|
+
font-size: 0.95rem;
|
|
81
|
+
line-height: 22px;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
.options-module_optionsContainer__atebx {
|
|
85
|
+
display: flex;
|
|
86
|
+
flex-direction: column;
|
|
87
|
+
gap: 18px;
|
|
88
|
+
margin-top: 12px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.options-module_optionBtn__LiVJD {
|
|
92
|
+
width: 100%;
|
|
93
|
+
padding: 12px;
|
|
94
|
+
border-radius: var(--quiz-border-radius-medium, 8px);
|
|
95
|
+
background: var(--quiz-color-option-background, #ffffff);
|
|
96
|
+
cursor: pointer;
|
|
97
|
+
transition: var(--quiz-transition-medium, 0.3s);
|
|
98
|
+
color: var(--quiz-color-option-text, #161c20);
|
|
99
|
+
border: none;
|
|
100
|
+
text-align: left;
|
|
101
|
+
border: 1px solid var(--quiz-color-option-border, #e7e7e7);
|
|
102
|
+
/* display: flex; */
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.options-module_optionBtn__LiVJD:hover {
|
|
106
|
+
background: var(--quiz-color-option-hover, #e1d8c9);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.options-module_optionBtn__LiVJD.options-module_selected__yvd2e {
|
|
110
|
+
background: var(--quiz-color-option-selected, #b59b7b);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.options-module_optionText__W2Nhm {
|
|
114
|
+
font-size: var(--quiz-font-size-medium, 1rem);
|
|
115
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
116
|
+
line-height: 22px;
|
|
117
|
+
letter-spacing: -0.1%;
|
|
118
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.options-module_optionImage__DNo-g {
|
|
122
|
+
max-width: 100%;
|
|
123
|
+
height: auto;
|
|
124
|
+
border-radius: var(--quiz-border-radius-small, 4px);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.options-module_optionCode__UBsLe {
|
|
128
|
+
background-color: #1e1e1e;
|
|
129
|
+
color: white;
|
|
130
|
+
padding: var(--quiz-spacing-small, 8px);
|
|
131
|
+
border-radius: var(--quiz-border-radius-small, 4px);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
@media (max-width: 768px) {
|
|
135
|
+
.options-module_optionText__W2Nhm {
|
|
136
|
+
font-size: 0.95rem;
|
|
137
|
+
line-height: 21px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.options-module_optionBtn__LiVJD:hover {
|
|
141
|
+
background: var(--quiz-color-option-selected, #b59b7b);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
.timer-module_timer__J6Vp3 {
|
|
145
|
+
display: flex;
|
|
146
|
+
justify-content: center;
|
|
147
|
+
align-items: center;
|
|
148
|
+
gap: 8px;
|
|
149
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
150
|
+
font-size: var(--quiz-font-size-medium, 0.9rem);
|
|
151
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
152
|
+
color: var(--quiz-color-text-primary, #161c20);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.timer-module_timer__J6Vp3 span {
|
|
156
|
+
color: var(--quiz-color-text-primary, #161c20);
|
|
157
|
+
font-size: var(--quiz-font-size-medium, 0.9rem);
|
|
158
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
159
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.timer-module_timer__J6Vp3 svg {
|
|
163
|
+
width: 18px;
|
|
164
|
+
height: 18px;
|
|
165
|
+
fill: var(--quiz-color-text-primary, #161c20);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@media (max-width: 768px) {
|
|
169
|
+
.timer-module_timer__J6Vp3 {
|
|
170
|
+
font-size: var(--quiz-font-size-small, 0.85rem);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.timer-module_timer__J6Vp3 span {
|
|
174
|
+
font-size: var(--quiz-font-size-small, 0.85rem);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.timer-module_timer__J6Vp3 svg {
|
|
178
|
+
width: 16px;
|
|
179
|
+
height: 16px;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
/* Modal Background Overlay */
|
|
183
|
+
.tabSwitchModal-module_modalOverlay__KxoJM {
|
|
184
|
+
position: fixed;
|
|
185
|
+
top: 0;
|
|
186
|
+
left: 0;
|
|
187
|
+
width: 100%;
|
|
188
|
+
height: 100%;
|
|
189
|
+
background: rgba(0, 0, 0, 0.6);
|
|
190
|
+
display: flex;
|
|
191
|
+
justify-content: center;
|
|
192
|
+
align-items: center;
|
|
193
|
+
z-index: 1000;
|
|
194
|
+
}
|
|
195
|
+
/* Modal Box */
|
|
196
|
+
.tabSwitchModal-module_modalContent__IJiuo {
|
|
197
|
+
background: var(--quiz-tab-switch-modal-background, #222);
|
|
198
|
+
color: var(--quiz-tab-switch-modal-text-color, #fff);
|
|
199
|
+
padding: var(--quiz-tab-switch-modal-padding, 20px);
|
|
200
|
+
border-radius: var(--quiz-tab-switch-modal-border-radius, 10px);
|
|
201
|
+
width: 400px;
|
|
202
|
+
text-align: center;
|
|
203
|
+
position: relative;
|
|
204
|
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
205
|
+
}
|
|
206
|
+
/* Close Button */
|
|
207
|
+
.tabSwitchModal-module_modalClose__HhoGx {
|
|
208
|
+
position: absolute;
|
|
209
|
+
top: 10px;
|
|
210
|
+
right: 15px;
|
|
211
|
+
background: none;
|
|
212
|
+
border: none;
|
|
213
|
+
font-size: 24px;
|
|
214
|
+
color: var(--quiz-tab-switch-modal-close-color, #fff);
|
|
215
|
+
cursor: pointer;
|
|
216
|
+
font-family: var(--quiz-tab-switch-modal-font-family, "Patron", sans-serif);
|
|
217
|
+
}
|
|
218
|
+
/* Header */
|
|
219
|
+
.tabSwitchModal-module_modalHeader__-RsEI {
|
|
220
|
+
display: flex;
|
|
221
|
+
flex-direction: column;
|
|
222
|
+
align-items: center;
|
|
223
|
+
margin-bottom: var(--quiz-tab-switch-modal-header-margin, 10px);
|
|
224
|
+
font-family: var(--quiz-tab-switch-modal-font-family, "Patron", sans-serif);
|
|
225
|
+
}
|
|
226
|
+
/* Warning Icon */
|
|
227
|
+
.tabSwitchModal-module_modalIcon__wRuay {
|
|
228
|
+
font-size: 32px;
|
|
229
|
+
color: var(--quiz-tab-switch-modal-icon-color, #ffcc00);
|
|
230
|
+
}
|
|
231
|
+
/* Text */
|
|
232
|
+
.tabSwitchModal-module_modalText__sCgfv {
|
|
233
|
+
font-size: var(--quiz-tab-switch-modal-text-font-size, 14px);
|
|
234
|
+
color: var(--quiz-tab-switch-modal-text-secondary-color, #ccc);
|
|
235
|
+
margin-bottom: var(--quiz-tab-switch-modal-text-margin, 20px);
|
|
236
|
+
font-family: var(--quiz-tab-switch-modal-font-family, "Patron", sans-serif);
|
|
237
|
+
}
|
|
238
|
+
/* Button */
|
|
239
|
+
.tabSwitchModal-module_modalButton__Pawa9 {
|
|
240
|
+
background: var(--quiz-tab-switch-modal-button-background, #fff);
|
|
241
|
+
color: var(--quiz-tab-switch-modal-button-text-color, #222);
|
|
242
|
+
border: none;
|
|
243
|
+
padding: var(--quiz-tab-switch-modal-button-padding, 10px 20px);
|
|
244
|
+
border-radius: var(--quiz-tab-switch-modal-button-border-radius, 20px);
|
|
245
|
+
font-size: var(--quiz-tab-switch-modal-button-font-size, 14px);
|
|
246
|
+
cursor: pointer;
|
|
247
|
+
transition: var(--quiz-tab-switch-modal-button-transition, 0.3s);
|
|
248
|
+
font-family: var(--quiz-tab-switch-modal-font-family, "Patron", sans-serif);
|
|
249
|
+
}
|
|
250
|
+
.tabSwitchModal-module_modalButton__Pawa9:hover {
|
|
251
|
+
background: var(--quiz-tab-switch-modal-button-hover-background, #ddd);
|
|
252
|
+
color: var(--quiz-tab-switch-modal-button-hover-text-color, #222);
|
|
253
|
+
}
|
|
254
|
+
.quizEndScreen-module_endScreenOverlay__8EiUX {
|
|
255
|
+
position: fixed;
|
|
256
|
+
top: 0;
|
|
257
|
+
left: 0;
|
|
258
|
+
width: 100%;
|
|
259
|
+
height: 100%;
|
|
260
|
+
background: var(--quiz-end-screen-background, #222);
|
|
261
|
+
color: var(--quiz-end-screen-text-color, #fff);
|
|
262
|
+
display: flex;
|
|
263
|
+
justify-content: center;
|
|
264
|
+
align-items: center;
|
|
265
|
+
z-index: 1000;
|
|
266
|
+
/* direction: ltr; */
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/* Content */
|
|
270
|
+
|
|
271
|
+
.quizEndScreen-module_endScreenContent__hzr2O {
|
|
272
|
+
text-align: center;
|
|
273
|
+
font-size: var(--quiz-end-screen-font-size, 20px);
|
|
274
|
+
font-weight: var(--quiz-end-screen-font-weight, bold);
|
|
275
|
+
font-family: var(--quiz-end-screen-font-family, "Patron", sans-serif);
|
|
276
|
+
color: var(--quiz-end-screen-text-color, #fff);
|
|
277
|
+
padding: 20px;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.quizEndScreen-module_endScreenClose__ztM4x {
|
|
281
|
+
position: absolute;
|
|
282
|
+
top: 20px;
|
|
283
|
+
right: 25px;
|
|
284
|
+
background: none;
|
|
285
|
+
border: none;
|
|
286
|
+
font-size: 24px;
|
|
287
|
+
color: var(--quiz-end-screen-close-color, #fff);
|
|
288
|
+
cursor: pointer;
|
|
289
|
+
font-family: var(--quiz-end-screen-font-family, "Patron", sans-serif);
|
|
290
|
+
}
|
|
291
|
+
.loader-module_loaderOverlay__-THCU {
|
|
292
|
+
position: fixed;
|
|
293
|
+
top: 0;
|
|
294
|
+
left: 0;
|
|
295
|
+
width: 100%;
|
|
296
|
+
height: 100%;
|
|
297
|
+
background-color: var(--quiz-loader-background, black);
|
|
298
|
+
display: flex;
|
|
299
|
+
align-items: center;
|
|
300
|
+
justify-content: center;
|
|
301
|
+
z-index: 9999;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.loader-module_loaderSpinner__c8AWp {
|
|
305
|
+
border: 8px solid var(--quiz-loader-spinner-border, rgba(255, 255, 255, 0.2));
|
|
306
|
+
border-top: 8px solid var(--quiz-loader-spinner-color, white);
|
|
307
|
+
border-radius: 50%;
|
|
308
|
+
width: 60px;
|
|
309
|
+
height: 60px;
|
|
310
|
+
animation: loader-module_spin__IzlCN 1s linear infinite;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
@keyframes loader-module_spin__IzlCN {
|
|
314
|
+
to {
|
|
315
|
+
transform: rotate(360deg);
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
* {
|
|
319
|
+
box-sizing: border-box;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.quiz-module_quizPage__VGbhc {
|
|
323
|
+
position: fixed;
|
|
324
|
+
background: var(--quiz-color-background, #ffffff);
|
|
325
|
+
width: 100vw;
|
|
326
|
+
min-height: 100dvh;
|
|
327
|
+
top: 0;
|
|
328
|
+
left: 0;
|
|
329
|
+
z-index: 100;
|
|
330
|
+
box-sizing: border-box;
|
|
331
|
+
overflow-y: auto; /* ensure scrolling works */
|
|
332
|
+
display: flex;
|
|
333
|
+
flex-direction: column;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.quiz-module_quizPageContainer__kQZ4d {
|
|
337
|
+
flex: 1;
|
|
338
|
+
display: flex;
|
|
339
|
+
flex-direction: column;
|
|
340
|
+
border-radius: var(--quiz-border-radius-large, 16px);
|
|
341
|
+
margin: var(--quiz-spacing-large, 24px) var(--quiz-spacing-medium, 16px) 0px var(--quiz-spacing-medium, 16px);
|
|
342
|
+
height: 100%;
|
|
343
|
+
background: var(--quiz-color-surface, #f8f5f2);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/* Ticker stays in a row on all devices */
|
|
347
|
+
|
|
348
|
+
.quiz-module_quizTicker__i1CIw {
|
|
349
|
+
display: flex;
|
|
350
|
+
justify-content: space-between;
|
|
351
|
+
align-items: center;
|
|
352
|
+
padding: 20px 20px;
|
|
353
|
+
border-bottom: 1px solid var(--quiz-color-border, #e1d8c9);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.quiz-module_quizTickerRight__5SdyV {
|
|
357
|
+
display: flex;
|
|
358
|
+
justify-content: center;
|
|
359
|
+
align-items: center;
|
|
360
|
+
gap: 1rem;
|
|
361
|
+
padding-right: 2rem;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.quiz-module_closeBtn__2ZUdu{
|
|
365
|
+
border: none;
|
|
366
|
+
background: none;
|
|
367
|
+
cursor: pointer;
|
|
368
|
+
padding: 0;
|
|
369
|
+
margin: 0;
|
|
370
|
+
width: 18px;
|
|
371
|
+
height: 18px;
|
|
372
|
+
display: flex;
|
|
373
|
+
align-items: center;
|
|
374
|
+
justify-content: center;
|
|
375
|
+
margin-bottom: 4px;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.quiz-module_closeBtn__2ZUdu svg {
|
|
379
|
+
width: 18px;
|
|
380
|
+
height: 18px;
|
|
381
|
+
flex-shrink: 0;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.quiz-module_quizContainer__v1u42 {
|
|
385
|
+
flex-grow: 1;
|
|
386
|
+
width: 100%;
|
|
387
|
+
display: flex;
|
|
388
|
+
flex-direction: row; /* side-by-side on desktop */
|
|
389
|
+
align-items: flex-start;
|
|
390
|
+
padding: var(--quiz-spacing-large, 24px) 56px var(--quiz-spacing-large, 24px);
|
|
391
|
+
border-radius: 10px;
|
|
392
|
+
justify-content: space-between;
|
|
393
|
+
box-sizing: border-box;
|
|
394
|
+
max-width: 1600px;
|
|
395
|
+
margin: 0 auto;
|
|
396
|
+
max-height: 80dvh;
|
|
397
|
+
overflow: auto;
|
|
398
|
+
gap: 2rem;
|
|
399
|
+
scrollbar-width: none; /* Firefox */
|
|
400
|
+
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.quiz-module_quizContainer__v1u42::-webkit-scrollbar {
|
|
404
|
+
display: none;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
/* Left & Right columns on desktop */
|
|
408
|
+
|
|
409
|
+
.quiz-module_quizLeft__2c5nS {
|
|
410
|
+
width: 100%;
|
|
411
|
+
max-width: 650px;
|
|
412
|
+
overflow: auto;
|
|
413
|
+
scrollbar-width: thin;
|
|
414
|
+
scrollbar-color: #ccc transparent; /* thumb color, track color */
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
/* WebKit-based browsers (Chrome, Safari, Edge) */
|
|
418
|
+
|
|
419
|
+
.quiz-module_quizLeft__2c5nS::-webkit-scrollbar {
|
|
420
|
+
width: 6px; /* slim scrollbar */
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.quiz-module_quizLeft__2c5nS::-webkit-scrollbar-thumb {
|
|
424
|
+
background-color: #ccc; /* grey thumb */
|
|
425
|
+
border-radius: 4px;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.quiz-module_quizLeft__2c5nS::-webkit-scrollbar-track {
|
|
429
|
+
background: transparent; /* optional: transparent track */
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.quiz-module_quizRight__VW2vj {
|
|
433
|
+
max-width: 622px;
|
|
434
|
+
width: 100%;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.quiz-module_quizRightHead__zzia5 {
|
|
438
|
+
display: flex;
|
|
439
|
+
justify-content: space-between;
|
|
440
|
+
align-items: center;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.quiz-module_chooseOption__oisps {
|
|
444
|
+
font-size: var(--quiz-font-size-medium, 1rem);
|
|
445
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
446
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
447
|
+
line-height: var(--quiz-line-height-xlarge, 32px);
|
|
448
|
+
letter-spacing: 0.2%;
|
|
449
|
+
color: var(--quiz-color-text-primary, #161c20);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.quiz-module_questionCount__whDFY {
|
|
453
|
+
font-size: var(--quiz-font-size-small, 0.9rem);
|
|
454
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
455
|
+
color: var(--quiz-color-text-primary, #161c20);
|
|
456
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
457
|
+
line-height: var(--quiz-line-height-small, 1.2rem);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.quiz-module_optionsContainer__rNs2w {
|
|
461
|
+
display: flex;
|
|
462
|
+
flex-direction: column;
|
|
463
|
+
gap: 18px;
|
|
464
|
+
margin-top: 12px;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.quiz-module_mobileNextBtn__iSSfH {
|
|
468
|
+
display: none;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
/* Button Styles */
|
|
472
|
+
|
|
473
|
+
.quiz-module_prevBtn__3rk6z,
|
|
474
|
+
.quiz-module_nextBtn__AvAyW {
|
|
475
|
+
padding: 10px 54px;
|
|
476
|
+
background: var(--quiz-color-button-primary, #000000);
|
|
477
|
+
color: var(--quiz-color-button-primary-text, #ffffff);
|
|
478
|
+
border: none;
|
|
479
|
+
border-radius: var(--quiz-spacing-large, 24px);
|
|
480
|
+
cursor: pointer;
|
|
481
|
+
transition: var(--quiz-transition-medium, 0.3s);
|
|
482
|
+
font-size: var(--quiz-font-size-small, 0.9rem);
|
|
483
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
484
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
485
|
+
line-height: 21px;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.quiz-module_prevBtn__3rk6z {
|
|
489
|
+
background: var(--quiz-color-button-secondary, #5d4037);
|
|
490
|
+
color: var(--quiz-color-button-secondary-text, #ffffff);
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.quiz-module_nextBtn__AvAyW:disabled {
|
|
494
|
+
background: var(--quiz-color-button-disabled, #d7ccc8);
|
|
495
|
+
color: var(--quiz-color-button-disabled-text, #ffffff);
|
|
496
|
+
cursor: not-allowed;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.quiz-module_scrollDownBtn__7-XTG {
|
|
500
|
+
position: fixed;
|
|
501
|
+
bottom: 20px;
|
|
502
|
+
right: 20px;
|
|
503
|
+
z-index: 999;
|
|
504
|
+
border: none;
|
|
505
|
+
border-radius: 50%;
|
|
506
|
+
padding: 4px;
|
|
507
|
+
cursor: pointer;
|
|
508
|
+
font-size: 20px;
|
|
509
|
+
transition: background var(--quiz-transition-medium, 0.3s);
|
|
510
|
+
background: var(--quiz-color-scroll-button, #ffffff);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.quiz-module_bounce__8egNx {
|
|
514
|
+
animation: quiz-module_bounce__8egNx 1.6s infinite;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
@keyframes quiz-module_bounce__8egNx {
|
|
518
|
+
0%,
|
|
519
|
+
20%,
|
|
520
|
+
50%,
|
|
521
|
+
80%,
|
|
522
|
+
100% {
|
|
523
|
+
transform: translateY(0px);
|
|
524
|
+
}
|
|
525
|
+
40% {
|
|
526
|
+
transform: translateY(-4px);
|
|
527
|
+
}
|
|
528
|
+
60% {
|
|
529
|
+
transform: translateY(-2px);
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
/* RESPONSIVE LAYOUT */
|
|
534
|
+
|
|
535
|
+
@media (max-width: 768px) {
|
|
536
|
+
.quiz-module_quizPageContainer__kQZ4d {
|
|
537
|
+
flex-direction: column;
|
|
538
|
+
padding: var(--quiz-spacing-medium, 16px);
|
|
539
|
+
gap: 1rem;
|
|
540
|
+
overflow-y: auto;
|
|
541
|
+
margin: 0;
|
|
542
|
+
border-radius: 0;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.quiz-module_quizContainer__v1u42 {
|
|
546
|
+
flex-direction: column;
|
|
547
|
+
padding: 0;
|
|
548
|
+
justify-content: space-between;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
.quiz-module_quizTicker__i1CIw {
|
|
553
|
+
padding: var(--quiz-spacing-medium, 16px);
|
|
554
|
+
gap: 1rem;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.quiz-module_quizLeft__2c5nS {
|
|
558
|
+
max-width: 100%;
|
|
559
|
+
margin-bottom: 1rem;
|
|
560
|
+
max-height: none;
|
|
561
|
+
overflow: initial;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.quiz-module_quizTickerRight__5SdyV {
|
|
565
|
+
gap: 1rem;
|
|
566
|
+
padding-right: 0;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.quiz-module_chooseOption__oisps {
|
|
570
|
+
font-size: var(--quiz-font-size-small, 0.9rem);
|
|
571
|
+
line-height: var(--quiz-line-height-medium, 1.4rem);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.quiz-module_nextBtnContainer__TvCOi {
|
|
575
|
+
display: none;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.quiz-module_mobileNextBtn__iSSfH {
|
|
579
|
+
display: block;
|
|
580
|
+
position: fixed;
|
|
581
|
+
bottom: 20px;
|
|
582
|
+
left: 50%;
|
|
583
|
+
transform: translateX(-50%);
|
|
584
|
+
z-index: 1000;
|
|
585
|
+
width: calc(100% - 40px);
|
|
586
|
+
max-width: 350px;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.quiz-module_nextBtn__AvAyW {
|
|
590
|
+
width: 100%;
|
|
591
|
+
padding: var(--quiz-spacing-medium, 16px) var(--quiz-spacing-large, 24px);
|
|
592
|
+
font-size: var(--quiz-font-size-medium, 1rem);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.quiz-module_questionCount__whDFY {
|
|
596
|
+
font-size: 0.85rem;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.quiz-module_optionBtn__bIwda {
|
|
600
|
+
padding: var(--quiz-spacing-medium, 16px);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
@media (max-width: 768px) and (max-height: 800px) {
|
|
605
|
+
.quiz-module_quizContainer__v1u42 {
|
|
606
|
+
max-height: 70dvh;
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
@media (max-width: 768px) and (max-height: 500px) {
|
|
611
|
+
.quiz-module_quizContainer__v1u42 {
|
|
612
|
+
max-height: 60dvh;
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
.question-module_questionText__SEG-N {
|
|
616
|
+
font-size: var(--quiz-font-size-large, 24px);
|
|
617
|
+
font-weight: var(--quiz-font-weight-bold, 700);
|
|
618
|
+
color: var(--quiz-color-text-primary, #2E1500);
|
|
619
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
620
|
+
line-height: 33.6px;
|
|
621
|
+
letter-spacing: 0.048px;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
code {
|
|
625
|
+
font-size: 0.8rem;
|
|
626
|
+
font-weight: normal;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
@media (max-width: 1320px) {
|
|
630
|
+
/* .questionText {
|
|
631
|
+
font-size: var(--quiz-font-size-medium, 1rem);
|
|
632
|
+
}
|
|
633
|
+
.questionHtmlWrapper code {
|
|
634
|
+
font-size: 0.8rem;
|
|
635
|
+
} */
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
@media (max-width: 768px) {
|
|
639
|
+
.question-module_questionText__SEG-N {
|
|
640
|
+
font-size: 1.25rem;
|
|
641
|
+
line-height: 25.6px;
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
.options-module_optionsContainer__Fyukt {
|
|
645
|
+
display: flex;
|
|
646
|
+
flex-direction: column;
|
|
647
|
+
gap: 10px;
|
|
648
|
+
margin-top: 12px;
|
|
649
|
+
/* height: 50vh;
|
|
650
|
+
overflow-y: auto; */
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
.options-module_optionBtn__pT-ri {
|
|
655
|
+
width: 100%;
|
|
656
|
+
padding: 16px;
|
|
657
|
+
border-radius: var(--quiz-border-radius-medium, 8px);
|
|
658
|
+
background: var(--quiz-color-option-background, #ffffff);
|
|
659
|
+
cursor: pointer;
|
|
660
|
+
transition: var(--quiz-transition-medium, 0.3s);
|
|
661
|
+
color: var(--quiz-color-option-text, #1D1B21);
|
|
662
|
+
border: none;
|
|
663
|
+
text-align: left;
|
|
664
|
+
border: 1px solid var(--quiz-color-option-border, #D9D9D9);
|
|
665
|
+
/* display: flex; */
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
.options-module_optionBtn__pT-ri:hover {
|
|
670
|
+
background: var(--quiz-color-option-hover, #CBFF59);
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
.options-module_optionBtn__pT-ri.options-module_selected__Pukyd {
|
|
675
|
+
background: var(--quiz-color-option-selected, #CBFF59);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
.options-module_optionText__dyBcH {
|
|
680
|
+
font-size: var(--quiz-font-size-medium, 1rem);
|
|
681
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
682
|
+
line-height: 22px;
|
|
683
|
+
letter-spacing: -0.1%;
|
|
684
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
.options-module_optionImage__G3FXt {
|
|
689
|
+
max-width: 100%;
|
|
690
|
+
height: auto;
|
|
691
|
+
border-radius: var(--quiz-border-radius-small, 4px);
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
.options-module_optionCode__q3GqF {
|
|
696
|
+
background-color: #1e1e1e;
|
|
697
|
+
color: white;
|
|
698
|
+
padding: var(--quiz-spacing-small, 8px);
|
|
699
|
+
border-radius: var(--quiz-border-radius-small, 4px);
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
@media (max-width: 768px) {
|
|
704
|
+
/* .optionText {
|
|
705
|
+
font-size: 0.95rem;
|
|
706
|
+
line-height: 21px;
|
|
707
|
+
}
|
|
708
|
+
*/
|
|
709
|
+
.options-module_optionBtn__pT-ri:hover {
|
|
710
|
+
background: var(--quiz-color-option-selected, #CBFF59);
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
.timer-module_timer__o-tMk {
|
|
714
|
+
display: flex;
|
|
715
|
+
justify-content: center;
|
|
716
|
+
align-items: center;
|
|
717
|
+
gap: 4px;
|
|
718
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
719
|
+
font-size: var(--quiz-font-size-medium, 0.9rem);
|
|
720
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
721
|
+
color: var(--quiz-color-text-primary, #161c20);
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.timer-module_timer__o-tMk span {
|
|
725
|
+
color: #FFF;
|
|
726
|
+
font-size: var(--quiz-font-size-medium, 16px);
|
|
727
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
728
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
729
|
+
line-height: var(--quiz-line-height-medium, 23px);
|
|
730
|
+
letter-spacing: var(--quiz-letter-spacing-medium, -0.016px);
|
|
731
|
+
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.timer-module_timer__o-tMk svg {
|
|
735
|
+
width: 18px;
|
|
736
|
+
height: 18px;
|
|
737
|
+
fill: var(--quiz-color-text-primary, #161c20);
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
@media (max-width: 768px) {
|
|
741
|
+
/* .timer {
|
|
742
|
+
font-size: var(--quiz-font-size-small, 0.85rem);
|
|
743
|
+
} */
|
|
744
|
+
|
|
745
|
+
/* .timer span {
|
|
746
|
+
font-size: var(--quiz-font-size-small, 1rem);
|
|
747
|
+
} */
|
|
748
|
+
|
|
749
|
+
.timer-module_timer__o-tMk svg {
|
|
750
|
+
width: 16px;
|
|
751
|
+
height: 16px;
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
* {
|
|
756
|
+
box-sizing: border-box;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.frontlineQuiz-module_quizPage__20qsB {
|
|
760
|
+
position: fixed;
|
|
761
|
+
background: var(--quiz-color-background, #ffffff);
|
|
762
|
+
width: 100vw;
|
|
763
|
+
min-height: 100dvh;
|
|
764
|
+
top: 0;
|
|
765
|
+
left: 0;
|
|
766
|
+
z-index: 100;
|
|
767
|
+
box-sizing: border-box;
|
|
768
|
+
overflow: visible; /* Changed from overflow-y: auto to prevent interference with fixed positioning */
|
|
769
|
+
display: flex;
|
|
770
|
+
flex-direction: column;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.frontlineQuiz-module_quizPageContainer__YCead {
|
|
774
|
+
flex: 1;
|
|
775
|
+
display: flex;
|
|
776
|
+
flex-direction: column;
|
|
777
|
+
border-radius: var(--quiz-border-radius-large, 16px);
|
|
778
|
+
margin: var(--quiz-spacing-large, 24px) var(--quiz-spacing-medium, 16px) 0px var(--quiz-spacing-medium, 16px);
|
|
779
|
+
height: 100%;
|
|
780
|
+
background: var(--quiz-color-surface, #A198AC);
|
|
781
|
+
overflow: visible; /* Ensure no overflow interference with fixed positioning */
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
/* Ticker stays in a row on all devices */
|
|
785
|
+
|
|
786
|
+
.frontlineQuiz-module_quizTicker__0g1ga {
|
|
787
|
+
display: flex;
|
|
788
|
+
justify-content: space-between;
|
|
789
|
+
align-items: center;
|
|
790
|
+
padding: 20px 20px;
|
|
791
|
+
/* border-bottom: 1px solid var(--quiz-color-border, transparent); */
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.frontlineQuiz-module_quizTickerRight__5DIuy {
|
|
795
|
+
display: flex;
|
|
796
|
+
justify-content: center;
|
|
797
|
+
align-items: center;
|
|
798
|
+
gap: 1rem;
|
|
799
|
+
padding-right: 2rem;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.frontlineQuiz-module_closeBtn__hySeT{
|
|
803
|
+
|
|
804
|
+
border: none;
|
|
805
|
+
background: rgba(234, 234, 234, 0.50);
|
|
806
|
+
cursor: pointer;
|
|
807
|
+
padding-bottom: 3px;
|
|
808
|
+
width: 24px;
|
|
809
|
+
/* height: 24px; */
|
|
810
|
+
display: flex;
|
|
811
|
+
align-items: center;
|
|
812
|
+
justify-content: center;
|
|
813
|
+
border-radius: 20px;
|
|
814
|
+
display: flex;
|
|
815
|
+
font-size: 20px;
|
|
816
|
+
aspect-ratio: 1/1;
|
|
817
|
+
color: #ffffff;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.frontlineQuiz-module_closeBtn__hySeT svg {
|
|
821
|
+
width: 18px;
|
|
822
|
+
height: 18px;
|
|
823
|
+
flex-shrink: 0;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.frontlineQuiz-module_quizContainer__RILFb {
|
|
827
|
+
flex-grow: 1;
|
|
828
|
+
width: 100%;
|
|
829
|
+
display: flex;
|
|
830
|
+
flex-direction: row; /* side-by-side on desktop */
|
|
831
|
+
align-items: flex-start;
|
|
832
|
+
padding: var(--quiz-spacing-large, 24px) 56px var(--quiz-spacing-large, 24px);
|
|
833
|
+
border-top-left-radius: 10px;
|
|
834
|
+
border-top-right-radius: 10px;
|
|
835
|
+
justify-content: space-between;
|
|
836
|
+
box-sizing: border-box;
|
|
837
|
+
max-width: 1600px;
|
|
838
|
+
margin: 0 auto;
|
|
839
|
+
gap: 2rem;
|
|
840
|
+
background: #ffffff;
|
|
841
|
+
overflow: auto;
|
|
842
|
+
scrollbar-width: none; /* Firefox */
|
|
843
|
+
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.frontlineQuiz-module_quizContainer__RILFb::-webkit-scrollbar {
|
|
847
|
+
display: none;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.frontlineQuiz-module_cardDeck__JP0v4{
|
|
851
|
+
position: relative;
|
|
852
|
+
width: 100%;
|
|
853
|
+
flex: 1;
|
|
854
|
+
overflow: hidden;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.frontlineQuiz-module_stackedCard__Vwgrw {
|
|
858
|
+
position: absolute;
|
|
859
|
+
top: 25px;
|
|
860
|
+
left: 50%;
|
|
861
|
+
bottom: 0;
|
|
862
|
+
transform-origin: center top;
|
|
863
|
+
transition: opacity 0.3s ease-in-out;
|
|
864
|
+
overflow-x: hidden;
|
|
865
|
+
overflow-y: auto;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.frontlineQuiz-module_exitingCard__mYZ2E {
|
|
869
|
+
opacity: 0;
|
|
870
|
+
transition: opacity 0.3s ease-in-out;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
/* Left & Right columns on desktop */
|
|
874
|
+
|
|
875
|
+
.frontlineQuiz-module_quizLeft__dyhwA {
|
|
876
|
+
width: 100%;
|
|
877
|
+
max-width: 650px;
|
|
878
|
+
overflow: initial;
|
|
879
|
+
scrollbar-width: thin;
|
|
880
|
+
scrollbar-color: #ccc transparent; /* thumb color, track color */
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
/* WebKit-based browsers (Chrome, Safari, Edge) */
|
|
884
|
+
|
|
885
|
+
.frontlineQuiz-module_quizLeft__dyhwA::-webkit-scrollbar {
|
|
886
|
+
width: 6px; /* slim scrollbar */
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.frontlineQuiz-module_quizLeft__dyhwA::-webkit-scrollbar-thumb {
|
|
890
|
+
background-color: #ccc; /* grey thumb */
|
|
891
|
+
border-radius: 4px;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.frontlineQuiz-module_quizLeft__dyhwA::-webkit-scrollbar-track {
|
|
895
|
+
background: transparent; /* optional: transparent track */
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.frontlineQuiz-module_quizRight__s7J3R {
|
|
899
|
+
max-width: 622px;
|
|
900
|
+
width: 100%;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.frontlineQuiz-module_quizRightHead__Xs3bh {
|
|
904
|
+
display: flex;
|
|
905
|
+
justify-content: flex-end;
|
|
906
|
+
align-items: center;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.frontlineQuiz-module_chooseOption__W1lRR {
|
|
910
|
+
font-size: var(--quiz-font-size-medium, 1rem);
|
|
911
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
912
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
913
|
+
line-height: var(--quiz-line-height-xlarge, 32px);
|
|
914
|
+
letter-spacing: 0.2%;
|
|
915
|
+
color: var(--quiz-color-text-primary, #161c20);
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.frontlineQuiz-module_questionCount__cFlA- {
|
|
919
|
+
font-size: var(--quiz-font-size-small, 14px);
|
|
920
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
921
|
+
color: var(--quiz-color-text-primary, #FFF);
|
|
922
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
923
|
+
line-height: var(--quiz-line-height-small, 32px);
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.frontlineQuiz-module_optionsContainer__xYly9 {
|
|
927
|
+
display: flex;
|
|
928
|
+
flex-direction: column;
|
|
929
|
+
gap: 18px;
|
|
930
|
+
margin-top: 12px;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.frontlineQuiz-module_mobileNextBtn__trrH5 {
|
|
934
|
+
display: none;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
/* Button Styles */
|
|
938
|
+
|
|
939
|
+
.frontlineQuiz-module_prevBtn__I2VdW,
|
|
940
|
+
.frontlineQuiz-module_nextBtn__UeoLO {
|
|
941
|
+
padding: 10px 54px;
|
|
942
|
+
background: var(--quiz-color-button-primary, #000000);
|
|
943
|
+
color: var(--quiz-color-button-primary-text, #ffffff);
|
|
944
|
+
border: none;
|
|
945
|
+
border-radius: var(--quiz-spacing-large, 24px);
|
|
946
|
+
cursor: pointer;
|
|
947
|
+
transition: var(--quiz-transition-medium, 0.3s);
|
|
948
|
+
font-size: var(--quiz-font-size-small, 0.9rem);
|
|
949
|
+
font-weight: var(--quiz-font-weight-medium, 500);
|
|
950
|
+
font-family: var(--quiz-font-family, "Patron", sans-serif);
|
|
951
|
+
line-height: 21px;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.frontlineQuiz-module_prevBtn__I2VdW {
|
|
955
|
+
background: var(--quiz-color-button-secondary, #5d4037);
|
|
956
|
+
color: var(--quiz-color-button-secondary-text, #ffffff);
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.frontlineQuiz-module_nextBtn__UeoLO:disabled {
|
|
960
|
+
background: var(--quiz-color-button-disabled, #d7ccc8);
|
|
961
|
+
color: var(--quiz-color-button-disabled-text, #ffffff);
|
|
962
|
+
cursor: not-allowed;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.frontlineQuiz-module_scrollDownBtn__-DHaP {
|
|
966
|
+
position: fixed;
|
|
967
|
+
bottom: 20px;
|
|
968
|
+
right: 20px;
|
|
969
|
+
z-index: 999;
|
|
970
|
+
border: none;
|
|
971
|
+
border-radius: 50%;
|
|
972
|
+
padding: 4px;
|
|
973
|
+
cursor: pointer;
|
|
974
|
+
font-size: 20px;
|
|
975
|
+
transition: background var(--quiz-transition-medium, 0.3s);
|
|
976
|
+
background: var(--quiz-color-scroll-button, #ffffff);
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.frontlineQuiz-module_bounce__kM2GG {
|
|
980
|
+
animation: frontlineQuiz-module_bounce__kM2GG 1.6s infinite;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
@keyframes frontlineQuiz-module_bounce__kM2GG {
|
|
984
|
+
0%,
|
|
985
|
+
20%,
|
|
986
|
+
50%,
|
|
987
|
+
80%,
|
|
988
|
+
100% {
|
|
989
|
+
transform: translateY(0px);
|
|
990
|
+
}
|
|
991
|
+
40% {
|
|
992
|
+
transform: translateY(-4px);
|
|
993
|
+
}
|
|
994
|
+
60% {
|
|
995
|
+
transform: translateY(-2px);
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
/* RESPONSIVE LAYOUT */
|
|
1000
|
+
|
|
1001
|
+
@media (max-width: 768px) {
|
|
1002
|
+
.frontlineQuiz-module_quizPageContainer__YCead {
|
|
1003
|
+
flex-direction: column;
|
|
1004
|
+
/* padding: var(--quiz-spacing-medium, 16px); */
|
|
1005
|
+
/* gap: 1rem; */
|
|
1006
|
+
overflow-y: auto;
|
|
1007
|
+
margin: 0;
|
|
1008
|
+
border-radius: 0;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.frontlineQuiz-module_quizContainer__RILFb {
|
|
1012
|
+
flex-direction: column;
|
|
1013
|
+
padding: 20px 20px 20px 20px;
|
|
1014
|
+
justify-content: start;
|
|
1015
|
+
gap: 24px;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
.frontlineQuiz-module_quizTicker__0g1ga {
|
|
1022
|
+
padding: var(--quiz-spacing-medium, 16px);
|
|
1023
|
+
gap: 1rem;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.frontlineQuiz-module_quizLeft__dyhwA {
|
|
1027
|
+
max-width: 100%;
|
|
1028
|
+
/* margin-bottom: 1rem; */
|
|
1029
|
+
min-height: max-content;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.frontlineQuiz-module_quizTickerRight__5DIuy {
|
|
1033
|
+
gap: 1rem;
|
|
1034
|
+
padding-right: 0;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.frontlineQuiz-module_chooseOption__W1lRR {
|
|
1038
|
+
font-size: var(--quiz-font-size-small, 0.9rem);
|
|
1039
|
+
line-height: var(--quiz-line-height-medium, 1.4rem);
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.frontlineQuiz-module_nextBtnContainer__smf8H {
|
|
1043
|
+
display: none;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.frontlineQuiz-module_mobileNextBtn__trrH5 {
|
|
1047
|
+
display: block;
|
|
1048
|
+
position: fixed;
|
|
1049
|
+
bottom: 12px;
|
|
1050
|
+
left: 50%;
|
|
1051
|
+
transform: translateX(-50%);
|
|
1052
|
+
z-index: 999;
|
|
1053
|
+
width: calc(100% - 40px);
|
|
1054
|
+
max-width: 350px;
|
|
1055
|
+
background: transparent;
|
|
1056
|
+
pointer-events: auto;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.frontlineQuiz-module_nextBtn__UeoLO {
|
|
1060
|
+
width: 100%;
|
|
1061
|
+
padding: var(--quiz-spacing-medium, 16px) var(--quiz-spacing-large, 24px);
|
|
1062
|
+
font-size: var(--quiz-font-size-medium, 1rem);
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.frontlineQuiz-module_questionCount__cFlA- {
|
|
1066
|
+
font-size: 0.85rem;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.frontlineQuiz-module_optionBtn__Rgseg {
|
|
1070
|
+
padding: var(--quiz-spacing-medium, 16px);
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
@media (max-width: 768px) and (max-height: 800px) {
|
|
1075
|
+
.frontlineQuiz-module_quizContainer__RILFb {
|
|
1076
|
+
/* max-height: 70dvh; */
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
@media (max-width: 768px) and (max-height: 500px) {
|
|
1081
|
+
.frontlineQuiz-module_quizContainer__RILFb {
|
|
1082
|
+
/* max-height: 60dvh; */
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
/* Modal Background Overlay */
|
|
1086
|
+
.confirmQuizExitModal-module_modalOverlay__AmJto {
|
|
1087
|
+
position: fixed;
|
|
1088
|
+
top: 0;
|
|
1089
|
+
left: 0;
|
|
1090
|
+
width: 100%;
|
|
1091
|
+
height: 100%;
|
|
1092
|
+
background: rgba(0, 0, 0, 0.6);
|
|
1093
|
+
display: flex;
|
|
1094
|
+
justify-content: center;
|
|
1095
|
+
align-items: center;
|
|
1096
|
+
z-index: 1000;
|
|
1097
|
+
}
|
|
1098
|
+
/* Modal Box */
|
|
1099
|
+
.confirmQuizExitModal-module_modalContent__6v2cV {
|
|
1100
|
+
background: var(--confirm-quiz-exit-modal-background, #222);
|
|
1101
|
+
color: var(--confirm-quiz-exit-modal-text-color, #fff);
|
|
1102
|
+
padding: var(--confirm-quiz-exit-modal-padding, 32px);
|
|
1103
|
+
border-radius: var(--confirm-quiz-exit-modal-border-radius, 10px);
|
|
1104
|
+
width: 400px;
|
|
1105
|
+
text-align: center;
|
|
1106
|
+
position: relative;
|
|
1107
|
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
1108
|
+
}
|
|
1109
|
+
/* Close Button */
|
|
1110
|
+
.confirmQuizExitModal-module_modalClose__Gol-K {
|
|
1111
|
+
position: absolute;
|
|
1112
|
+
top: 10px;
|
|
1113
|
+
right: 15px;
|
|
1114
|
+
background: none;
|
|
1115
|
+
border: none;
|
|
1116
|
+
font-size: 24px;
|
|
1117
|
+
color: var(--confirm-quiz-exit-modal-close-color, #fff);
|
|
1118
|
+
cursor: pointer;
|
|
1119
|
+
font-family: var(--confirm-quiz-exit-modal-font-family, "Patron", sans-serif);
|
|
1120
|
+
}
|
|
1121
|
+
/* Header */
|
|
1122
|
+
.confirmQuizExitModal-module_modalHeader__73y33 {
|
|
1123
|
+
display: flex;
|
|
1124
|
+
flex-direction: column;
|
|
1125
|
+
align-items: center;
|
|
1126
|
+
margin-bottom: var(--confirm-quiz-exit-modal-header-margin, 10px);
|
|
1127
|
+
font-family: var(--confirm-quiz-exit-modal-font-family, "Patron", sans-serif);
|
|
1128
|
+
}
|
|
1129
|
+
.confirmQuizExitModal-module_modalHeader__73y33 h2 {
|
|
1130
|
+
font-size: var(--confirm-quiz-exit-modal-header-font-size, 28px);
|
|
1131
|
+
font-family: var(--confirm-quiz-exit-modal-font-family, "Patron", sans-serif);
|
|
1132
|
+
}
|
|
1133
|
+
/* Warning Icon */
|
|
1134
|
+
.confirmQuizExitModal-module_modalIcon__SI6YL {
|
|
1135
|
+
font-size: 32px;
|
|
1136
|
+
color: var(--confirm-quiz-exit-modal-icon-color, #ffcc00);
|
|
1137
|
+
}
|
|
1138
|
+
/* Text */
|
|
1139
|
+
.confirmQuizExitModal-module_modalText__s1Bh9 {
|
|
1140
|
+
font-size: var(--confirm-quiz-exit-modal-text-font-size, 20px);
|
|
1141
|
+
color: var(--confirm-quiz-exit-modal-text-secondary-color, #ccc);
|
|
1142
|
+
margin-bottom: var(--confirm-quiz-exit-modal-text-margin, 20px);
|
|
1143
|
+
font-family: var(--confirm-quiz-exit-modal-font-family, "Patron", sans-serif);
|
|
1144
|
+
}
|
|
1145
|
+
/* Button */
|
|
1146
|
+
.confirmQuizExitModal-module_modalButton__oVSCb {
|
|
1147
|
+
background: var(--confirm-quiz-exit-modal-button-background, #fff);
|
|
1148
|
+
color: var(--confirm-quiz-exit-modal-button-text-color, #222);
|
|
1149
|
+
border: none;
|
|
1150
|
+
padding: var(--confirm-quiz-exit-modal-button-padding, 10px 20px);
|
|
1151
|
+
border-radius: var(--confirm-quiz-exit-modal-button-border-radius, 20px);
|
|
1152
|
+
font-size: var(--confirm-quiz-exit-modal-button-font-size, 14px);
|
|
1153
|
+
cursor: pointer;
|
|
1154
|
+
transition: var(--confirm-quiz-exit-modal-button-transition, 0.3s);
|
|
1155
|
+
font-family: var(--confirm-quiz-exit-modal-font-family, "Patron", sans-serif);
|
|
1156
|
+
}
|
|
1157
|
+
.confirmQuizExitModal-module_modalButton__oVSCb:hover {
|
|
1158
|
+
background: var(--confirm-quiz-exit-modal-button-hover-background, #ddd);
|
|
1159
|
+
color: var(--confirm-quiz-exit-modal-button-hover-text-color, #222);
|
|
1160
|
+
}
|
|
1161
|
+
.confirmQuizExitModal-module_modalButtonContainer__zph-0 {
|
|
1162
|
+
display: flex;
|
|
1163
|
+
justify-content: center;
|
|
1164
|
+
gap: var(--confirm-quiz-exit-modal-button-gap, 16px);
|
|
1165
|
+
}
|
|
1166
|
+
/* Cancel Button */
|
|
1167
|
+
.confirmQuizExitModal-module_modalButtonCancel__UsDFm {
|
|
1168
|
+
background: var(
|
|
1169
|
+
--confirm-quiz-exit-modal-button-cancel-background,
|
|
1170
|
+
transparent
|
|
1171
|
+
);
|
|
1172
|
+
color: var(
|
|
1173
|
+
--confirm-quiz-exit-modal-button-cancel-text-color,
|
|
1174
|
+
rgba(255, 255, 255, 0.8)
|
|
1175
|
+
);
|
|
1176
|
+
border: var(
|
|
1177
|
+
--confirm-quiz-exit-modal-button-cancel-border,
|
|
1178
|
+
1px solid rgba(255, 255, 255, 0.8)
|
|
1179
|
+
);
|
|
1180
|
+
padding: var(--confirm-quiz-exit-modal-button-cancel-padding, 12px 20px);
|
|
1181
|
+
border-radius: var(
|
|
1182
|
+
--confirm-quiz-exit-modal-button-cancel-border-radius,
|
|
1183
|
+
8px
|
|
1184
|
+
);
|
|
1185
|
+
font-size: var(--confirm-quiz-exit-modal-button-cancel-font-size, 14px);
|
|
1186
|
+
cursor: pointer;
|
|
1187
|
+
transition: var(--confirm-quiz-exit-modal-button-cancel-transition, 0.3s);
|
|
1188
|
+
font-family: var(--confirm-quiz-exit-modal-font-family, "Patron", sans-serif);
|
|
1189
|
+
font-weight: var(--confirm-quiz-exit-modal-button-cancel-font-weight, 600);
|
|
1190
|
+
width: var(--confirm-quiz-exit-modal-button-cancel-width, 90px);
|
|
1191
|
+
}
|
|
1192
|
+
.confirmQuizExitModal-module_modalButtonCancel__UsDFm:hover {
|
|
1193
|
+
background: var(
|
|
1194
|
+
--confirm-quiz-exit-modal-button-cancel-hover-background,
|
|
1195
|
+
rgba(255, 255, 255, 0.8)
|
|
1196
|
+
);
|
|
1197
|
+
color: var(--confirm-quiz-exit-modal-button-cancel-hover-text-color, #bbb);
|
|
1198
|
+
}
|
|
1199
|
+
/* Confirm Button */
|
|
1200
|
+
.confirmQuizExitModal-module_modalButtonConfirm__bQave {
|
|
1201
|
+
background: var(--confirm-quiz-exit-modal-button-confirm-background, #fff);
|
|
1202
|
+
color: var(--confirm-quiz-exit-modal-button-confirm-text-color, #000);
|
|
1203
|
+
border: var(--confirm-quiz-exit-modal-button-confirm-border, none);
|
|
1204
|
+
padding: var(--confirm-quiz-exit-modal-button-confirm-padding, 12px 20px);
|
|
1205
|
+
border-radius: var(
|
|
1206
|
+
--confirm-quiz-exit-modal-button-confirm-border-radius,
|
|
1207
|
+
8px
|
|
1208
|
+
);
|
|
1209
|
+
font-size: var(--confirm-quiz-exit-modal-button-confirm-font-size, 14px);
|
|
1210
|
+
cursor: pointer;
|
|
1211
|
+
transition: var(--confirm-quiz-exit-modal-button-confirm-transition, 0.3s);
|
|
1212
|
+
font-family: var(--confirm-quiz-exit-modal-font-family, "Patron", sans-serif);
|
|
1213
|
+
font-weight: var(--confirm-quiz-exit-modal-button-confirm-font-weight, 600);
|
|
1214
|
+
width: var(--confirm-quiz-exit-modal-button-confirm-width, 90px);
|
|
1215
|
+
}
|
|
1216
|
+
.confirmQuizExitModal-module_modalButtonConfirm__bQave:hover {
|
|
1217
|
+
background: var(
|
|
1218
|
+
--confirm-quiz-exit-modal-button-confirm-hover-background,
|
|
1219
|
+
#eee
|
|
1220
|
+
);
|
|
1221
|
+
color: var(--confirm-quiz-exit-modal-button-confirm-hover-text-color, #111);
|
|
1222
|
+
}
|