srcdev-nuxt-components 9.1.45 → 9.1.46
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.
|
@@ -172,72 +172,80 @@ onUnmounted(stop);
|
|
|
172
172
|
src: url("/fonts/monoMMM_5.ttf") format("truetype");
|
|
173
173
|
font-weight: normal;
|
|
174
174
|
font-style: normal;
|
|
175
|
-
font-display:
|
|
175
|
+
font-display: optional;
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
.samaritan-
|
|
179
|
-
--_font-size: var(--samaritan-font-size, 2rem);
|
|
180
|
-
--_color-text: var(--samaritan-color-text, #ffffff);
|
|
181
|
-
--_color-underline: var(--samaritan-color-underline, #ffffff);
|
|
182
|
-
--_color-cursor: var(--samaritan-color-cursor, #cc0000);
|
|
183
|
-
--_color-cursor-off: var(--samaritan-color-cursor-off, transparent);
|
|
184
|
-
--_font-family: var(--samaritan-font-family, "Mono MMM 5", "Nova Mono", "Courier New", monospace);
|
|
185
|
-
--_letter-spacing: var(--samaritan-letter-spacing, 0.08em);
|
|
186
|
-
|
|
178
|
+
.samaritan-stage {
|
|
187
179
|
display: flex;
|
|
188
|
-
flex-direction: column;
|
|
189
180
|
align-items: center;
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
181
|
+
justify-content: center;
|
|
182
|
+
min-block-size: 100dvh;
|
|
183
|
+
width: 100%;
|
|
184
|
+
|
|
185
|
+
.samaritan-prompt {
|
|
186
|
+
--_font-size: var(--samaritan-font-size, 2rem);
|
|
187
|
+
--_color-text: var(--samaritan-color-text, #ffffff);
|
|
188
|
+
--_color-underline: var(--samaritan-color-underline, #ffffff);
|
|
189
|
+
--_color-cursor: var(--samaritan-color-cursor, #cc0000);
|
|
190
|
+
--_color-cursor-off: var(--samaritan-color-cursor-off, transparent);
|
|
191
|
+
--_font-family: var(--samaritan-font-family, "Mono MMM 5", "Nova Mono", "Courier New", monospace);
|
|
192
|
+
--_letter-spacing: var(--samaritan-letter-spacing, 0.08em);
|
|
194
193
|
|
|
195
|
-
.samaritan-prompt__content {
|
|
196
194
|
display: flex;
|
|
197
195
|
flex-direction: column;
|
|
198
196
|
align-items: center;
|
|
199
197
|
row-gap: 0.6rem;
|
|
200
|
-
|
|
201
|
-
|
|
198
|
+
font-family: var(--_font-family);
|
|
199
|
+
font-size: var(--_font-size);
|
|
200
|
+
letter-spacing: var(--_letter-spacing);
|
|
202
201
|
|
|
203
|
-
.samaritan-
|
|
202
|
+
.samaritan-prompt__content {
|
|
204
203
|
display: flex;
|
|
205
|
-
|
|
206
|
-
|
|
204
|
+
flex-direction: column;
|
|
205
|
+
align-items: center;
|
|
206
|
+
row-gap: 0.6rem;
|
|
207
|
+
width: 100%;
|
|
208
|
+
transition: opacity v-bind(fadeDurationCss) ease;
|
|
209
|
+
|
|
210
|
+
.samaritan-prompt__stage {
|
|
211
|
+
display: flex;
|
|
212
|
+
justify-content: center;
|
|
213
|
+
min-height: 1.2em;
|
|
207
214
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
215
|
+
.samaritan-prompt__text {
|
|
216
|
+
color: var(--_color-text);
|
|
217
|
+
white-space: nowrap;
|
|
218
|
+
text-transform: uppercase;
|
|
219
|
+
}
|
|
212
220
|
}
|
|
213
|
-
}
|
|
214
221
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
222
|
+
.samaritan-prompt__underline {
|
|
223
|
+
width: 100%;
|
|
224
|
+
min-width: 4ch;
|
|
225
|
+
height: 0.15rem;
|
|
226
|
+
background: var(--_color-underline);
|
|
227
|
+
}
|
|
220
228
|
}
|
|
221
|
-
}
|
|
222
229
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
+
.samaritan-prompt__cursor {
|
|
231
|
+
color: var(--_color-cursor);
|
|
232
|
+
font-size: 2.4rem;
|
|
233
|
+
line-height: 1;
|
|
234
|
+
animation: samaritan-pulse 2.5s ease-in-out infinite;
|
|
235
|
+
transition: opacity 400ms ease;
|
|
236
|
+
}
|
|
230
237
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
238
|
+
.samaritan-prompt__sr-text {
|
|
239
|
+
position: absolute;
|
|
240
|
+
width: 1px;
|
|
241
|
+
height: 1px;
|
|
242
|
+
padding: 0;
|
|
243
|
+
margin: -1px;
|
|
244
|
+
overflow: hidden;
|
|
245
|
+
clip: rect(0, 0, 0, 0);
|
|
246
|
+
white-space: nowrap;
|
|
247
|
+
border: 0;
|
|
248
|
+
}
|
|
241
249
|
}
|
|
242
250
|
}
|
|
243
251
|
|
package/app/pages/samaritan.vue
CHANGED
|
@@ -230,11 +230,6 @@ const qaHideCursorInCycle = ref(true);
|
|
|
230
230
|
--samaritan-letter-spacing: 0.14em;
|
|
231
231
|
|
|
232
232
|
.samaritan-stage {
|
|
233
|
-
display: flex;
|
|
234
|
-
align-items: center;
|
|
235
|
-
justify-content: center;
|
|
236
|
-
min-block-size: 100dvh;
|
|
237
|
-
|
|
238
233
|
.samaritan-stage--mixed {
|
|
239
234
|
border-top: 1px solid oklch(100% 0 0 / 0.08);
|
|
240
235
|
}
|