munchboka-edutools 0.1.0__py3-none-any.whl
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.
- munchboka_edutools/__init__.py +182 -0
- munchboka_edutools/_plotmath_shim.py +126 -0
- munchboka_edutools/_version.py +2 -0
- munchboka_edutools/directives/__init__.py +1 -0
- munchboka_edutools/directives/admonitions.py +356 -0
- munchboka_edutools/directives/cas_popup.py +272 -0
- munchboka_edutools/directives/dialogue.py +137 -0
- munchboka_edutools/directives/escape_room.py +296 -0
- munchboka_edutools/directives/factor_tree.py +549 -0
- munchboka_edutools/directives/ggb.py +209 -0
- munchboka_edutools/directives/ggb_icon.py +62 -0
- munchboka_edutools/directives/ggb_popup.py +165 -0
- munchboka_edutools/directives/horner.py +324 -0
- munchboka_edutools/directives/interactive_code.py +75 -0
- munchboka_edutools/directives/jeopardy.py +252 -0
- munchboka_edutools/directives/multi_plot.py +1126 -0
- munchboka_edutools/directives/pair_puzzle.py +191 -0
- munchboka_edutools/directives/parsons.py +109 -0
- munchboka_edutools/directives/plot.py +3012 -0
- munchboka_edutools/directives/poly_icon.py +91 -0
- munchboka_edutools/directives/polydiv.py +344 -0
- munchboka_edutools/directives/quiz.py +291 -0
- munchboka_edutools/directives/signchart.py +474 -0
- munchboka_edutools/directives/timed_quiz.py +436 -0
- munchboka_edutools/directives/turtle.py +157 -0
- munchboka_edutools/static/css/admonitions.css +2012 -0
- munchboka_edutools/static/css/cas_popup.css +242 -0
- munchboka_edutools/static/css/code_mirror_themes/github_dark_cm.css +112 -0
- munchboka_edutools/static/css/code_mirror_themes/github_dark_default_cm.css +40 -0
- munchboka_edutools/static/css/code_mirror_themes/github_dark_high_contrast_cm.css +141 -0
- munchboka_edutools/static/css/code_mirror_themes/github_light_cm.css +120 -0
- munchboka_edutools/static/css/code_mirror_themes/github_light_default_cm.css +108 -0
- munchboka_edutools/static/css/code_mirror_themes/one_dark_cm.css +121 -0
- munchboka_edutools/static/css/dialogue.css +92 -0
- munchboka_edutools/static/css/escapeRoom/escape-room.css +223 -0
- munchboka_edutools/static/css/figures.css +274 -0
- munchboka_edutools/static/css/general_style.css +74 -0
- munchboka_edutools/static/css/github-dark-high-contrast.css +141 -0
- munchboka_edutools/static/css/github-dark.css +112 -0
- munchboka_edutools/static/css/github-light.css +120 -0
- munchboka_edutools/static/css/interactive_code/style.css +575 -0
- munchboka_edutools/static/css/interactive_code.css +582 -0
- munchboka_edutools/static/css/jeopardy.css +476 -0
- munchboka_edutools/static/css/pairPuzzle/style.css +177 -0
- munchboka_edutools/static/css/parsons/parsonsPuzzle.css +331 -0
- munchboka_edutools/static/css/quiz.css +312 -0
- munchboka_edutools/static/css/timedQuiz.css +375 -0
- munchboka_edutools/static/icons/ggb/mode_evaluate.svg +1 -0
- munchboka_edutools/static/icons/ggb/mode_extremum.svg +1 -0
- munchboka_edutools/static/icons/ggb/mode_intersect.svg +1 -0
- munchboka_edutools/static/icons/ggb/mode_nsolve.svg +1 -0
- munchboka_edutools/static/icons/ggb/mode_numeric.svg +1 -0
- munchboka_edutools/static/icons/ggb/mode_point.svg +1 -0
- munchboka_edutools/static/icons/ggb/mode_solve.svg +1 -0
- munchboka_edutools/static/icons/misc/windows-logo.svg +1 -0
- munchboka_edutools/static/icons/outline/dark_mode/academic.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/backward.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/book.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/chat_bubble.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/check.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/cmd_line.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/file.svg +1 -0
- munchboka_edutools/static/icons/outline/dark_mode/fire.svg +4 -0
- munchboka_edutools/static/icons/outline/dark_mode/key.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/magnifying.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/pencil_square.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/play.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/question.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/square_check.svg +1 -0
- munchboka_edutools/static/icons/outline/dark_mode/stop.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/summary.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/undo.svg +3 -0
- munchboka_edutools/static/icons/outline/dark_mode/unlock.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/academic.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/backward.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/book.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/chat_bubble.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/check.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/cmd_line.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/file.svg +1 -0
- munchboka_edutools/static/icons/outline/light_mode/fire.svg +4 -0
- munchboka_edutools/static/icons/outline/light_mode/key.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/magnifying.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/pencil_square.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/play.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/question.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/square_check.svg +1 -0
- munchboka_edutools/static/icons/outline/light_mode/stop.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/summary.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/undo.svg +3 -0
- munchboka_edutools/static/icons/outline/light_mode/unlock.svg +3 -0
- munchboka_edutools/static/icons/polyicons/cubicdown.svg +3 -0
- munchboka_edutools/static/icons/polyicons/cubicup.svg +3 -0
- munchboka_edutools/static/icons/polyicons/frown.svg +3 -0
- munchboka_edutools/static/icons/polyicons/smile.svg +3 -0
- munchboka_edutools/static/icons/solid/dark_mode/academic.svg +5 -0
- munchboka_edutools/static/icons/solid/dark_mode/backward.svg +3 -0
- munchboka_edutools/static/icons/solid/dark_mode/book.svg +3 -0
- munchboka_edutools/static/icons/solid/dark_mode/brain.svg +1 -0
- munchboka_edutools/static/icons/solid/dark_mode/file.svg +1 -0
- munchboka_edutools/static/icons/solid/dark_mode/fire.svg +3 -0
- munchboka_edutools/static/icons/solid/dark_mode/key.svg +3 -0
- munchboka_edutools/static/icons/solid/dark_mode/pencil_square.svg +4 -0
- munchboka_edutools/static/icons/solid/dark_mode/play.svg +3 -0
- munchboka_edutools/static/icons/solid/dark_mode/python.svg +1 -0
- munchboka_edutools/static/icons/solid/dark_mode/scroll.svg +1 -0
- munchboka_edutools/static/icons/solid/dark_mode/stop.svg +3 -0
- munchboka_edutools/static/icons/solid/light_mode/academic.svg +5 -0
- munchboka_edutools/static/icons/solid/light_mode/backward.svg +3 -0
- munchboka_edutools/static/icons/solid/light_mode/book.svg +3 -0
- munchboka_edutools/static/icons/solid/light_mode/brain.svg +1 -0
- munchboka_edutools/static/icons/solid/light_mode/file.svg +1 -0
- munchboka_edutools/static/icons/solid/light_mode/fire.svg +3 -0
- munchboka_edutools/static/icons/solid/light_mode/key.svg +3 -0
- munchboka_edutools/static/icons/solid/light_mode/pencil_square.svg +4 -0
- munchboka_edutools/static/icons/solid/light_mode/play.svg +3 -0
- munchboka_edutools/static/icons/solid/light_mode/python.svg +1 -0
- munchboka_edutools/static/icons/solid/light_mode/scroll.svg +1 -0
- munchboka_edutools/static/icons/solid/light_mode/stop.svg +3 -0
- munchboka_edutools/static/icons/stickers/edit.svg +1 -0
- munchboka_edutools/static/icons/stickers/pencil_square.svg +3 -0
- munchboka_edutools/static/js/casThemeManager.js +99 -0
- munchboka_edutools/static/js/escapeRoom/escape-room.js +219 -0
- munchboka_edutools/static/js/geogebra-setup.js +6 -0
- munchboka_edutools/static/js/highlight-init.js +6 -0
- munchboka_edutools/static/js/interactiveCode/codeEditor.js +632 -0
- munchboka_edutools/static/js/interactiveCode/interactiveCodeSetup.js +348 -0
- munchboka_edutools/static/js/interactiveCode/pythonRunner.js +336 -0
- munchboka_edutools/static/js/interactiveCode/turtleCode.js +203 -0
- munchboka_edutools/static/js/interactiveCode/workerManager.js +353 -0
- munchboka_edutools/static/js/interactive_code/codeEditor.js +662 -0
- munchboka_edutools/static/js/interactive_code/interactiveCodeSetup.js +252 -0
- munchboka_edutools/static/js/interactive_code/pythonRunner.js +145 -0
- munchboka_edutools/static/js/interactive_code/turtleCode.js +56 -0
- munchboka_edutools/static/js/interactive_code/workerManager.js +204 -0
- munchboka_edutools/static/js/jeopardy.js +457 -0
- munchboka_edutools/static/js/pairPuzzle/draggableItem.js +64 -0
- munchboka_edutools/static/js/pairPuzzle/dropZone.js +119 -0
- munchboka_edutools/static/js/pairPuzzle/game.js +160 -0
- munchboka_edutools/static/js/parsons/parsonsPuzzle.js +641 -0
- munchboka_edutools/static/js/quiz.js +422 -0
- munchboka_edutools/static/js/skulpt/skulpt.js +35721 -0
- munchboka_edutools/static/js/timedQuiz/multipleChoiceQuestion.js +184 -0
- munchboka_edutools/static/js/timedQuiz/timedMultipleChoiceQuiz.js +244 -0
- munchboka_edutools/static/js/timedQuiz/utils.js +6 -0
- munchboka_edutools/static/js/utils.js +3 -0
- munchboka_edutools-0.1.0.dist-info/METADATA +107 -0
- munchboka_edutools-0.1.0.dist-info/RECORD +150 -0
- munchboka_edutools-0.1.0.dist-info/WHEEL +4 -0
- munchboka_edutools-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
/* Multiple Choice Quiz Styles */
|
|
2
|
+
|
|
3
|
+
/* Default (Light Mode) Variables */
|
|
4
|
+
:root {
|
|
5
|
+
--background-color: #f0f2f5;
|
|
6
|
+
--text-color: #1a1a1a;
|
|
7
|
+
--card-background-color: #ffffff;
|
|
8
|
+
--card-border-color: #ced4da;
|
|
9
|
+
--card-shadow-color: rgba(0, 0, 0, 0.1);
|
|
10
|
+
--answer-background-color: #f8f9fa;
|
|
11
|
+
--answer-border-color: #ced4da;
|
|
12
|
+
--answer-hover-background-color: #e2e6ea;
|
|
13
|
+
--selected-background-color: #d1e7dd;
|
|
14
|
+
--selected-border-color: #0f5132;
|
|
15
|
+
--selected-text-color: #0f5132;
|
|
16
|
+
--correct-border-color: #198754;
|
|
17
|
+
--incorrect-border-color: #dc3545;
|
|
18
|
+
--button-background-color: #0d6efd;
|
|
19
|
+
--button-text-color: #ffffff;
|
|
20
|
+
--button-hover-background-color: #0b5ed7;
|
|
21
|
+
--toast-background-color: rgba(33, 37, 41, 0.9);
|
|
22
|
+
--toast-text-color: #ffffff;
|
|
23
|
+
--toast-success-background-color: rgba(25, 135, 84, 0.9); /* Green */
|
|
24
|
+
--toast-success-text-color: #ffffff;
|
|
25
|
+
--toast-error-background-color: rgba(220, 53, 69, 0.9); /* Red */
|
|
26
|
+
--toast-error-text-color: #ffffff;
|
|
27
|
+
|
|
28
|
+
/* Timer Variables */
|
|
29
|
+
--timer-background-color: #e9ecef;
|
|
30
|
+
--timer-text-color: #212529;
|
|
31
|
+
--progress-bar-background-color: #28a745; /* Green */
|
|
32
|
+
--progress-bar-warning-color: #ffc107; /* Yellow */
|
|
33
|
+
--progress-bar-danger-color: #dc3545; /* Red */
|
|
34
|
+
--progress-bar-transition: width 1s linear;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* Dark Mode Variables */
|
|
38
|
+
[data-mode="dark"] {
|
|
39
|
+
/* --background-color: #121212; */
|
|
40
|
+
--text-color: #e9ecef !important;
|
|
41
|
+
--card-background-color: #111522a4;
|
|
42
|
+
--card-border-color: #343640;
|
|
43
|
+
--card-shadow-color: rgba(0, 0, 0, 0.5);
|
|
44
|
+
--answer-background-color: #11152201;
|
|
45
|
+
--answer-border-color: #343a40;
|
|
46
|
+
--answer-hover-background-color: #80a2ff1b;
|
|
47
|
+
--selected-background-color: #0096879a;
|
|
48
|
+
--selected-border-color: #0f5132;
|
|
49
|
+
--selected-text-color: #ffffff;
|
|
50
|
+
--correct-border-color: #198754;
|
|
51
|
+
--incorrect-border-color: #dc3545;
|
|
52
|
+
--button-background-color: #0d6efd;
|
|
53
|
+
--button-text-color: #ffffff;
|
|
54
|
+
--button-hover-background-color: #0b5ed7;
|
|
55
|
+
--toast-background-color: rgba(248, 249, 250, 0.9);
|
|
56
|
+
--toast-text-color: #212529;
|
|
57
|
+
--toast-success-background-color: rgba(25, 135, 84, 0.9); /* Green */
|
|
58
|
+
--toast-success-text-color: #ffffff;
|
|
59
|
+
--toast-error-background-color: rgba(220, 53, 69, 0.9); /* Red */
|
|
60
|
+
--toast-error-text-color: #ffffff;
|
|
61
|
+
|
|
62
|
+
/* Timer variables */
|
|
63
|
+
--timer-background-color: #343a40;
|
|
64
|
+
--timer-text-color: #f8f9fa;
|
|
65
|
+
--progress-bar-background-color: #28a745; /* Green */
|
|
66
|
+
--progress-bar-warning-color: #ffc107; /* Yellow */
|
|
67
|
+
--progress-bar-danger-color: #dc3545; /* Red */
|
|
68
|
+
--progress-bar-transition: width 1s linear;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/* Auto Mode Variables */
|
|
72
|
+
[data-mode="auto"] {
|
|
73
|
+
/* Defaults to light mode variables */
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@media (prefers-color-scheme: dark) {
|
|
77
|
+
[data-mode="auto"] {
|
|
78
|
+
/* Variables for dark mode */
|
|
79
|
+
/* --background-color: #121212; */
|
|
80
|
+
--text-color: #e9ecef !important;
|
|
81
|
+
--card-background-color: #111522a4;
|
|
82
|
+
--card-border-color: #343a40;
|
|
83
|
+
--card-shadow-color: rgba(0, 0, 0, 0.5);
|
|
84
|
+
--answer-background-color: #11152201;
|
|
85
|
+
--answer-border-color: #343a40;
|
|
86
|
+
--answer-hover-background-color: #80a2ff1b;
|
|
87
|
+
--selected-background-color: #0096879a;
|
|
88
|
+
--selected-border-color: #0f5132;
|
|
89
|
+
--selected-text-color: #ffffff;
|
|
90
|
+
--correct-border-color: #198754;
|
|
91
|
+
--incorrect-border-color: #dc3545;
|
|
92
|
+
--button-background-color: #0d6efd;
|
|
93
|
+
--button-text-color: #ffffff;
|
|
94
|
+
--button-hover-background-color: #0b5ed7;
|
|
95
|
+
--toast-background-color: rgba(248, 249, 250, 0.9);
|
|
96
|
+
--toast-text-color: #212529;
|
|
97
|
+
--toast-success-background-color: rgba(25, 135, 84, 0.9); /* Green */
|
|
98
|
+
--toast-success-text-color: #ffffff;
|
|
99
|
+
--toast-error-background-color: rgba(220, 53, 69, 0.9); /* Red */
|
|
100
|
+
--toast-error-text-color: #ffffff;
|
|
101
|
+
|
|
102
|
+
/* Timer Variables */
|
|
103
|
+
--timer-background-color: #343a40;
|
|
104
|
+
--timer-text-color: #f8f9fa;
|
|
105
|
+
--progress-bar-background-color: #28a745; /* Green */
|
|
106
|
+
--progress-bar-warning-color: #ffc107; /* Yellow */
|
|
107
|
+
--progress-bar-danger-color: #dc3545; /* Red */
|
|
108
|
+
--progress-bar-transition: width 1s linear;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
/* Multiple Choice Quiz Container */
|
|
114
|
+
.mcq-container {
|
|
115
|
+
margin: 20px 0;
|
|
116
|
+
position: relative;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* Question Card Styles */
|
|
120
|
+
.question-card {
|
|
121
|
+
background-color: var(--card-background-color);
|
|
122
|
+
padding: 25px; /* Increased padding */
|
|
123
|
+
border-radius: 12px; /* Increased border radius */
|
|
124
|
+
margin-bottom: 20px;
|
|
125
|
+
border: 1px solid var(--card-border-color);
|
|
126
|
+
/* font-size: 18px; */
|
|
127
|
+
line-height: 1.6;
|
|
128
|
+
box-shadow: 0 4px 10px var(--card-shadow-color); /* Added shadow */
|
|
129
|
+
transition: transform 0.3s, box-shadow 0.3s;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.question-card:hover {
|
|
133
|
+
transform: translateY(-5px); /* Lift effect on hover */
|
|
134
|
+
box-shadow: 0 6px 15px var(--card-shadow-color); /* Enhanced shadow on hover */
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* Answers Grid */
|
|
138
|
+
.answers-grid {
|
|
139
|
+
display: flex;
|
|
140
|
+
flex-wrap: wrap;
|
|
141
|
+
gap: 15px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Answer Card Styles */
|
|
145
|
+
.answer-card {
|
|
146
|
+
flex: 1 1 calc(50% - 15px);
|
|
147
|
+
background-color: var(--answer-background-color);
|
|
148
|
+
padding: 15px 15px 15px 15px; /* Equal padding on all sides */
|
|
149
|
+
border-radius: 8px;
|
|
150
|
+
cursor: pointer;
|
|
151
|
+
text-align: left;
|
|
152
|
+
border: 1px solid var(--answer-border-color);
|
|
153
|
+
transition: background-color 0.3s, border-color 0.3s;
|
|
154
|
+
/* font-size: 18px; */
|
|
155
|
+
line-height: 1.4;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.answer-card pre,
|
|
159
|
+
.answer-card code {
|
|
160
|
+
margin: 0;
|
|
161
|
+
padding: 0;
|
|
162
|
+
line-height: 1.4; /* Adjust this as needed for spacing */
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.answer-card:hover {
|
|
166
|
+
background-color: var(--answer-hover-background-color);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.answer-card.selected {
|
|
170
|
+
background-color: var(--selected-background-color);
|
|
171
|
+
border: 2px solid var(--selected-border-color);
|
|
172
|
+
color: var(--selected-text-color);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/* Correct and Incorrect Question Card Borders */
|
|
176
|
+
.question-card.correct {
|
|
177
|
+
border: 2px solid var(--correct-border-color);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.question-card.incorrect {
|
|
181
|
+
border: 2px solid var(--incorrect-border-color);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
/* Buttons */
|
|
185
|
+
.button-container {
|
|
186
|
+
margin-top: 20px;
|
|
187
|
+
text-align: center;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/* .button {
|
|
191
|
+
margin: 5px;
|
|
192
|
+
padding: 12px 24px;
|
|
193
|
+
background-color: var(--button-background-color);
|
|
194
|
+
color: var(--button-text-color);
|
|
195
|
+
border: none;
|
|
196
|
+
border-radius: 5px;
|
|
197
|
+
cursor: pointer;
|
|
198
|
+
font-size: 16px;
|
|
199
|
+
transition: background-color 0.3s, transform 0.2s;
|
|
200
|
+
} */
|
|
201
|
+
|
|
202
|
+
.button:hover {
|
|
203
|
+
background-color: var(--button-hover-background-color);
|
|
204
|
+
transform: translateY(-2px);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.button:active {
|
|
208
|
+
transform: translateY(0);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
.button-check-answers {
|
|
213
|
+
background-color: #28a745; /* Green background */
|
|
214
|
+
color: black !important; /* Black text */
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.button-submit-answers {
|
|
218
|
+
background-color: #28a745; /* Green background */
|
|
219
|
+
color: black !important; /* Black text */
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.button-reset-quiz {
|
|
223
|
+
background-color: #28a745; /* Green background */
|
|
224
|
+
color: black !important; /* Black text */
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
/* Next button */
|
|
229
|
+
.button-next {
|
|
230
|
+
background-color: #00ffb7bd; /* Green background */
|
|
231
|
+
color: black !important; /* Black text */
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.button-next:hover {
|
|
235
|
+
background-color: #02cbbe; /* Darker green on hover */
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.button-next:active {
|
|
239
|
+
background-color: #00a095; /* Even darker green on click */
|
|
240
|
+
box-shadow: 0 5px #666; /* Shadow effect */
|
|
241
|
+
transform: translateY(4px); /* Move button down */
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/* Previous button */
|
|
245
|
+
.button-prev {
|
|
246
|
+
background-color: #ff8800; /* Green background */
|
|
247
|
+
color: black !important; /* Black text */
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.button-prev:hover {
|
|
251
|
+
background-color: #c66900; /* Darker green on hover */
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.button-prev:active {
|
|
255
|
+
background-color: #ad5d01; /* Even darker green on click */
|
|
256
|
+
box-shadow: 0 5px #666; /* Shadow effect */
|
|
257
|
+
transform: translateY(4px); /* Move button down */
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
/* Toast Notification */
|
|
262
|
+
.toast {
|
|
263
|
+
position: absolute;
|
|
264
|
+
padding: 15px;
|
|
265
|
+
border-radius: 8px;
|
|
266
|
+
z-index: 1000;
|
|
267
|
+
display: none;
|
|
268
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
269
|
+
/* transform: translate(-50%, -50%); */
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
.toast p {
|
|
274
|
+
margin: 0;
|
|
275
|
+
font-size: 16px;
|
|
276
|
+
font-weight: bold;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/* Success Toast */
|
|
280
|
+
.toast-success {
|
|
281
|
+
background-color: var(--toast-success-background-color);
|
|
282
|
+
color: var(--toast-success-text-color);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
/* Error Toast */
|
|
286
|
+
.toast-error {
|
|
287
|
+
background-color: var(--toast-error-background-color) !important;
|
|
288
|
+
color: var(--toast-error-text-color);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
/* Main Quiz Container */
|
|
292
|
+
.quiz-main-container {
|
|
293
|
+
position: relative;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/* Responsive Design */
|
|
297
|
+
@media (max-width: 600px) {
|
|
298
|
+
.answer-card {
|
|
299
|
+
flex: 1 1 100%;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
/* Question Counter */
|
|
306
|
+
.question-counter {
|
|
307
|
+
font-size: 18px;
|
|
308
|
+
font-weight: bold;
|
|
309
|
+
margin-bottom: 15px;
|
|
310
|
+
text-align: center;
|
|
311
|
+
color: var(--text-color);
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
/* Quiz Completion Message */
|
|
315
|
+
.quiz-completion-message {
|
|
316
|
+
text-align: center;
|
|
317
|
+
font-size: 24px;
|
|
318
|
+
font-weight: bold;
|
|
319
|
+
color: var(--text-color);
|
|
320
|
+
padding: 50px;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
.pre.img {
|
|
325
|
+
display: block;
|
|
326
|
+
margin-left: auto;
|
|
327
|
+
margin-right: auto;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
/* Styles for the timed multiple choice quiz */
|
|
333
|
+
|
|
334
|
+
/* Timer Container */
|
|
335
|
+
.timer-container {
|
|
336
|
+
position: relative;
|
|
337
|
+
width: 100%;
|
|
338
|
+
height: 30px;
|
|
339
|
+
background-color: var(--timer-background-color);
|
|
340
|
+
border-radius: 5px;
|
|
341
|
+
overflow: hidden;
|
|
342
|
+
margin-bottom: 15px;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
/* Progress Bar */
|
|
346
|
+
.progress-bar {
|
|
347
|
+
height: 100%;
|
|
348
|
+
background-color: var(--progress-bar-background-color);
|
|
349
|
+
width: 100%;
|
|
350
|
+
transition: var(--progress-bar-transition);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/* Timer Text */
|
|
354
|
+
.timer-text {
|
|
355
|
+
position: absolute;
|
|
356
|
+
top: 0;
|
|
357
|
+
left: 50%;
|
|
358
|
+
transform: translateX(-50%);
|
|
359
|
+
line-height: 30px;
|
|
360
|
+
font-weight: bold;
|
|
361
|
+
color: var(--timer-text-color);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
/* Warning State */
|
|
366
|
+
.progress-bar-warning {
|
|
367
|
+
background-color: var(--progress-bar-warning-color) !important;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
/* Danger State */
|
|
371
|
+
.progress-bar-danger {
|
|
372
|
+
background-color: var(--progress-bar-danger-color) !important;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M375.922 231.781H136.078v-24.609h239.844v24.609zm0 73.047H136.078v-25h239.844v25z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="512" height="512"><path fill="none" stroke="#ccc" stroke-miterlimit="10" stroke-width="13" d="M-13 256h538"/><path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="13" d="M12.157 522.083c48.055-330 122.797-613.705 243.605-265.999 121.803 350.571 192.696 63.998 244.082-266.168"/><ellipse cx="360" cy="416.6" fill="red" rx="35" ry="35" transform="rotate(-35.003 359.985 416.592)"/><path d="M382.122 401.112c8.537 12.193 5.563 29.064-6.631 37.603-12.195 8.539-29.066 5.564-37.605-6.631-8.539-12.195-5.565-29.064 6.631-37.603 12.195-8.539 29.064-5.564 37.605 6.631m10.648-7.457c-12.672-18.096-37.615-22.492-55.709-9.822-18.096 12.67-22.496 37.613-9.824 55.708 12.672 18.098 37.613 22.494 55.709 9.824 18.096-12.671 22.496-37.613 9.824-55.71z"/><ellipse cx="153" cy="97.61" fill="red" rx="35" ry="35" transform="rotate(-35.003 152.99 97.61)"/><path d="M175.114 82.124c8.537 12.193 5.563 29.064-6.631 37.603-12.195 8.539-29.066 5.564-37.605-6.631-8.539-12.195-5.564-29.064 6.631-37.603 12.195-8.539 29.064-5.564 37.605 6.631m10.649-7.457c-12.672-18.096-37.615-22.492-55.709-9.822-18.096 12.67-22.496 37.613-9.824 55.709 12.672 18.098 37.613 22.494 55.709 9.824 18.095-12.673 22.496-37.614 9.824-55.711z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M376.173 525.319C326.021 330.76 182.793 165.572-16.785 72.112l5.513-11.773c203.104 95.111 348.911 263.407 400.033 461.736l-12.588 3.244z"/><path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="13" d="M-9.29 392.69l535.31-245.15"/><circle cx="252.91" cy="272.83" r="35" fill="red"/><path d="M252.911 245.83c14.888 0 27 12.112 27 27s-12.112 27-27 27-27-12.112-27-27 12.112-27 27-27m0-13c-22.091 0-40 17.909-40 40s17.909 40 40 40c22.092 0 40-17.909 40-40s-17.908-40-40-40z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M209.271 331h-34.277l-43.945-59.18L88.568 331h-31.64l59.766-77.637L61.615 181h34.277l39.551 53.613L173.822 181h31.348l-55.664 72.363L209.271 331z"/><path fill="red" d="M455.072 213.813c-13.87 13.087-30.959 19.629-51.27 19.629-9.572 0-23.392-3.172-41.455-9.521-18.068-6.345-32.277-9.421-42.627-9.229-8.789.197-16.457 2.101-22.998 5.713-6.546 3.616-13.724 9.329-21.533 17.139v-20.801c14.063-14.063 31.641-20.801 52.734-20.215 8.981.197 22.119 3.369 39.404 9.521s30.711 9.229 40.283 9.229c9.178 0 17.285-1.854 24.316-5.566 7.031-3.708 14.744-9.274 23.145-16.699v20.8zm0 50.976c-13.87 13.088-30.959 19.629-51.27 19.629-9.572 0-23.392-3.172-41.455-9.521-18.068-6.345-32.277-9.421-42.627-9.229-8.789.197-16.457 2.102-22.998 5.713-6.546 3.616-13.724 9.329-21.533 17.139v-20.801c14.063-14.063 31.641-20.801 52.734-20.215 8.981.197 22.119 3.369 39.404 9.521s30.711 9.229 40.283 9.229c9.178 0 17.285-1.854 24.316-5.566 7.031-3.708 14.744-9.274 23.145-16.699v20.8z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M375.922 220.063c-18.494 17.45-41.278 26.172-68.359 26.172-12.763 0-31.189-4.229-55.273-12.695-24.091-8.459-43.036-12.561-56.836-12.305-11.719.263-21.942 2.802-30.664 7.617-8.728 4.822-18.298 12.439-28.711 22.852V223.97c18.75-18.75 42.188-27.734 70.313-26.953 11.975.263 29.492 4.492 52.539 12.695s40.948 12.305 53.711 12.305c12.237 0 23.047-2.472 32.422-7.422 9.375-4.944 19.659-12.366 30.859-22.266v27.734zm0 67.968c-18.494 17.45-41.278 26.172-68.359 26.172-12.763 0-31.189-4.229-55.273-12.695-24.091-8.459-43.036-12.561-56.836-12.305-11.719.263-21.942 2.802-30.664 7.617-8.728 4.822-18.298 12.439-28.711 22.852v-27.734c18.75-18.75 42.188-27.734 70.313-26.953 11.975.263 29.492 4.492 52.539 12.695s40.948 12.305 53.711 12.305c12.237 0 23.047-2.472 32.422-7.422 9.375-4.943 19.659-12.365 30.859-22.266v27.734z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><circle cx="168.7" cy="351.73" r="53.38" fill="#00f"/><path d="M168.704 310.55c22.704 0 41.175 18.472 41.175 41.175S191.408 392.9 168.704 392.9s-41.175-18.472-41.175-41.175S146 310.55 168.704 310.55m0-19.825c-33.689 0-61 27.312-61 61s27.311 61 61 61 61-27.312 61-61-27.311-61-61-61z"/><path fill="#00f" d="M428.199 252.873h-24.755l-18.17-45.547h-82.212l-18.397 45.547h-24.073l70.63-170h25.437l71.54 170zm-52.69-65.56l-32.021-78.445-31.34 78.444h63.362z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M209.271 331h-34.277l-43.945-59.18L88.568 331h-31.64l59.766-77.637L61.615 181h34.277l39.551 53.613L173.822 181h31.348l-55.664 72.363L209.271 331z"/><path fill="red" d="M455.072 222.895H275.189v-18.457h179.883v18.457zm0 54.785H275.189v-18.75h179.883v18.75z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="88" width="88" xmlns:v="https://vecta.io/nano"><path d="M0 12.402l35.687-4.86.016 34.423-35.67.203zm35.67 33.529l.028 34.453L.028 75.48.026 45.7zm4.326-39.025L87.314 0v41.527l-47.318.376zm47.329 39.349l-.011 41.34-47.318-6.678-.066-34.739z" fill="#00adef"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M4.26 10.147a60.438 60.438 0 0 0-.491 6.347A48.62 48.62 0 0 1 12 20.904a48.62 48.62 0 0 1 8.232-4.41 60.46 60.46 0 0 0-.491-6.347m-15.482 0a50.636 50.636 0 0 0-2.658-.813A59.906 59.906 0 0 1 12 3.493a59.903 59.903 0 0 1 10.399 5.84c-.896.248-1.783.52-2.658.814m-15.482 0A50.717 50.717 0 0 1 12 13.489a50.702 50.702 0 0 1 7.74-3.342M6.75 15a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm0 0v-3.675A55.378 55.378 0 0 1 12 8.443m-7.007 11.55A5.981 5.981 0 0 0 6.75 15.75v-1.5" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M21 16.811c0 .864-.933 1.406-1.683.977l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061A1.125 1.125 0 0 1 21 8.689v8.122ZM11.25 16.811c0 .864-.933 1.406-1.683.977l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061a1.125 1.125 0 0 1 1.683.977v8.122Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M8.625 9.75a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H8.25m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H12m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0h-.375m-13.5 3.01c0 1.6 1.123 2.994 2.707 3.227 1.087.16 2.185.283 3.293.369V21l4.184-4.183a1.14 1.14 0 0 1 .778-.332 48.294 48.294 0 0 0 5.83-.498c1.585-.233 2.708-1.626 2.708-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m6.75 7.5 3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" stroke="white" fill="white" viewBox="0 0 384 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M320 464c8.8 0 16-7.2 16-16l0-288-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16l256 0zM0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 448c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64z"/></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M15.362 5.214A8.252 8.252 0 0 1 12 21 8.25 8.25 0 0 1 6.038 7.047 8.287 8.287 0 0 0 9 9.601a8.983 8.983 0 0 1 3.361-6.867 8.21 8.21 0 0 0 3 2.48Z" />
|
|
3
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12 18a3.75 3.75 0 0 0 .495-7.468 5.99 5.99 0 0 0-1.925 3.547 5.975 5.975 0 0 1-2.133-1.001A3.75 3.75 0 0 0 12 18Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 5.25a3 3 0 0 1 3 3m3 0a6 6 0 0 1-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v2.25H2.25v-2.818c0-.597.237-1.17.659-1.591l6.499-6.499c.404-.404.527-1 .43-1.563A6 6 0 1 1 21.75 8.25Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986V5.653Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" stroke="white" fill="white" viewBox="0 0 448 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-9Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 14.25v2.25m3-4.5v4.5m3-6.75v6.75m3-9v9M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" class="size-6">
|
|
2
|
+
<path fill-rule="evenodd" d="M9.53 2.47a.75.75 0 0 1 0 1.06L4.81 8.25H15a6.75 6.75 0 0 1 0 13.5h-3a.75.75 0 0 1 0-1.5h3a5.25 5.25 0 1 0 0-10.5H4.81l4.72 4.72a.75.75 0 1 1-1.06 1.06l-6-6a.75.75 0 0 1 0-1.06l6-6a.75.75 0 0 1 1.06 0Z" clip-rule="evenodd" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="white" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M4.26 10.147a60.438 60.438 0 0 0-.491 6.347A48.62 48.62 0 0 1 12 20.904a48.62 48.62 0 0 1 8.232-4.41 60.46 60.46 0 0 0-.491-6.347m-15.482 0a50.636 50.636 0 0 0-2.658-.813A59.906 59.906 0 0 1 12 3.493a59.903 59.903 0 0 1 10.399 5.84c-.896.248-1.783.52-2.658.814m-15.482 0A50.717 50.717 0 0 1 12 13.489a50.702 50.702 0 0 1 7.74-3.342M6.75 15a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm0 0v-3.675A55.378 55.378 0 0 1 12 8.443m-7.007 11.55A5.981 5.981 0 0 0 6.75 15.75v-1.5" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M21 16.811c0 .864-.933 1.406-1.683.977l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061A1.125 1.125 0 0 1 21 8.689v8.122ZM11.25 16.811c0 .864-.933 1.406-1.683.977l-7.108-4.061a1.125 1.125 0 0 1 0-1.954l7.108-4.061a1.125 1.125 0 0 1 1.683.977v8.122Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M8.625 9.75a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H8.25m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0H12m4.125 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm0 0h-.375m-13.5 3.01c0 1.6 1.123 2.994 2.707 3.227 1.087.16 2.185.283 3.293.369V21l4.184-4.183a1.14 1.14 0 0 1 .778-.332 48.294 48.294 0 0 0 5.83-.498c1.585-.233 2.708-1.626 2.708-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m6.75 7.5 3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" stroke="black" fill="black" viewBox="0 0 384 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M320 464c8.8 0 16-7.2 16-16l0-288-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16l256 0zM0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 448c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64z"/></svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M15.362 5.214A8.252 8.252 0 0 1 12 21 8.25 8.25 0 0 1 6.038 7.047 8.287 8.287 0 0 0 9 9.601a8.983 8.983 0 0 1 3.361-6.867 8.21 8.21 0 0 0 3 2.48Z" />
|
|
3
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M12 18a3.75 3.75 0 0 0 .495-7.468 5.99 5.99 0 0 0-1.925 3.547 5.975 5.975 0 0 1-2.133-1.001A3.75 3.75 0 0 0 12 18Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M15.75 5.25a3 3 0 0 1 3 3m3 0a6 6 0 0 1-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v2.25H2.25v-2.818c0-.597.237-1.17.659-1.591l6.499-6.499c.404-.404.527-1 .43-1.563A6 6 0 1 1 21.75 8.25Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.347a1.125 1.125 0 0 1 0 1.972l-11.54 6.347a1.125 1.125 0 0 1-1.667-.986V5.653Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-9Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M7.5 14.25v2.25m3-4.5v4.5m3-6.75v6.75m3-9v9M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="size-6">
|
|
2
|
+
<path fill-rule="evenodd" d="M9.53 2.47a.75.75 0 0 1 0 1.06L4.81 8.25H15a6.75 6.75 0 0 1 0 13.5h-3a.75.75 0 0 1 0-1.5h3a5.25 5.25 0 1 0 0-10.5H4.81l4.72 4.72a.75.75 0 1 1-1.06 1.06l-6-6a.75.75 0 0 1 0-1.06l6-6a.75.75 0 0 1 1.06 0Z" clip-rule="evenodd" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="size-6">
|
|
2
|
+
<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z" />
|
|
3
|
+
</svg>
|