github-actions[bot] commited on
Commit
d69ef62
·
1 Parent(s): 705ea42

Auto-deploy from GitHub: aff437e9eb1373dbfbbce951a33d832ac86dff28

Browse files
Files changed (1) hide show
  1. index.html +112 -30
index.html CHANGED
@@ -62,8 +62,15 @@
62
  }
63
 
64
  @keyframes slideDown {
65
- from { opacity: 0; transform: translateY(-50px); }
66
- to { opacity: 1; transform: translateY(0); }
 
 
 
 
 
 
 
67
  }
68
 
69
  h1 {
@@ -93,8 +100,15 @@
93
  }
94
 
95
  @keyframes glow {
96
- 0%, 100% { opacity: 0.5; }
97
- 50% { opacity: 1; }
 
 
 
 
 
 
 
98
  }
99
 
100
  .subtitle {
@@ -119,8 +133,15 @@
119
  }
120
 
121
  @keyframes slideUp {
122
- from { opacity: 0; transform: translateY(50px); }
123
- to { opacity: 1; transform: translateY(0); }
 
 
 
 
 
 
 
124
  }
125
 
126
  .field-label {
@@ -232,7 +253,9 @@
232
  border-right: 3px solid var(--bg);
233
  }
234
 
235
- th:last-child { border-right: none; }
 
 
236
 
237
  tbody tr {
238
  border-bottom: 2px solid rgba(0, 212, 255, 0.2);
@@ -241,13 +264,23 @@
241
  }
242
 
243
  @keyframes fadeIn {
244
- from { opacity: 0; }
245
- to { opacity: 1; }
 
 
 
 
 
246
  }
247
 
248
- tbody tr:hover { background: rgba(0, 255, 136, 0.1); }
 
 
249
 
250
- td { padding: 1.5rem 1rem; color: var(--text); }
 
 
 
251
 
252
  .status {
253
  display: inline-block;
@@ -273,8 +306,15 @@
273
  }
274
 
275
  @keyframes pulse {
276
- 0%, 100% { opacity: 1; }
277
- 50% { opacity: 0.6; }
 
 
 
 
 
 
 
278
  }
279
 
280
  .status-completed {
@@ -297,7 +337,7 @@
297
  }
298
 
299
  .progress-bar-wrap {
300
- background: rgba(0,212,255,0.1);
301
  border: 2px solid var(--accent);
302
  height: 8px;
303
  margin-top: 6px;
@@ -338,8 +378,10 @@
338
  .modal {
339
  display: none;
340
  position: fixed;
341
- top: 0; left: 0;
342
- width: 100%; height: 100%;
 
 
343
  background: rgba(10, 14, 39, 0.95);
344
  z-index: 2000;
345
  animation: fadeIn 0.3s ease;
@@ -367,8 +409,15 @@
367
  }
368
 
369
  @keyframes modalSlideIn {
370
- from { opacity: 0; transform: translateY(-50px) scale(0.9); }
371
- to { opacity: 1; transform: translateY(0) scale(1); }
 
 
 
 
 
 
 
372
  }
373
 
374
  .modal-header {
@@ -443,8 +492,14 @@
443
  z-index: 5;
444
  }
445
 
446
- .copy-btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--bg); }
447
- .copy-btn.copied { background: var(--primary); }
 
 
 
 
 
 
448
 
449
  .notification {
450
  position: fixed;
@@ -461,20 +516,47 @@
461
  }
462
 
463
  @keyframes slideInRight {
464
- from { transform: translateX(400px); opacity: 0; }
465
- to { transform: translateX(0); opacity: 1; }
 
 
 
 
 
 
 
466
  }
467
 
468
  @keyframes slideOutRight {
469
- to { transform: translateX(400px); opacity: 0; }
 
 
 
470
  }
471
 
472
  @media (max-width: 768px) {
473
- .container { padding: 1rem; }
474
- .input-section, .table-wrapper { box-shadow: 4px 4px 0 var(--primary); }
475
- th, td { padding: 1rem 0.5rem; font-size: 0.9rem; }
476
- .modal-content { padding: 0; }
477
- .code-block { margin: 1rem; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
478
  }
479
  </style>
480
  </head>
@@ -483,7 +565,7 @@
483
  <div class="container">
484
  <header>
485
  <h1>Text-to-Text Generator</h1>
486
- <p class="subtitle">Qwen3.5-9B &bull; Submit &bull; Queue &bull; Generate</p>
487
  </header>
488
 
489
  <div class="input-section">
@@ -713,4 +795,4 @@
713
  </script>
714
  </body>
715
 
716
- </html>
 
62
  }
63
 
64
  @keyframes slideDown {
65
+ from {
66
+ opacity: 0;
67
+ transform: translateY(-50px);
68
+ }
69
+
70
+ to {
71
+ opacity: 1;
72
+ transform: translateY(0);
73
+ }
74
  }
75
 
76
  h1 {
 
100
  }
101
 
102
  @keyframes glow {
103
+
104
+ 0%,
105
+ 100% {
106
+ opacity: 0.5;
107
+ }
108
+
109
+ 50% {
110
+ opacity: 1;
111
+ }
112
  }
113
 
114
  .subtitle {
 
133
  }
134
 
135
  @keyframes slideUp {
136
+ from {
137
+ opacity: 0;
138
+ transform: translateY(50px);
139
+ }
140
+
141
+ to {
142
+ opacity: 1;
143
+ transform: translateY(0);
144
+ }
145
  }
146
 
147
  .field-label {
 
253
  border-right: 3px solid var(--bg);
254
  }
255
 
256
+ th:last-child {
257
+ border-right: none;
258
+ }
259
 
260
  tbody tr {
261
  border-bottom: 2px solid rgba(0, 212, 255, 0.2);
 
264
  }
265
 
266
  @keyframes fadeIn {
267
+ from {
268
+ opacity: 0;
269
+ }
270
+
271
+ to {
272
+ opacity: 1;
273
+ }
274
  }
275
 
276
+ tbody tr:hover {
277
+ background: rgba(0, 255, 136, 0.1);
278
+ }
279
 
280
+ td {
281
+ padding: 1.5rem 1rem;
282
+ color: var(--text);
283
+ }
284
 
285
  .status {
286
  display: inline-block;
 
306
  }
307
 
308
  @keyframes pulse {
309
+
310
+ 0%,
311
+ 100% {
312
+ opacity: 1;
313
+ }
314
+
315
+ 50% {
316
+ opacity: 0.6;
317
+ }
318
  }
319
 
320
  .status-completed {
 
337
  }
338
 
339
  .progress-bar-wrap {
340
+ background: rgba(0, 212, 255, 0.1);
341
  border: 2px solid var(--accent);
342
  height: 8px;
343
  margin-top: 6px;
 
378
  .modal {
379
  display: none;
380
  position: fixed;
381
+ top: 0;
382
+ left: 0;
383
+ width: 100%;
384
+ height: 100%;
385
  background: rgba(10, 14, 39, 0.95);
386
  z-index: 2000;
387
  animation: fadeIn 0.3s ease;
 
409
  }
410
 
411
  @keyframes modalSlideIn {
412
+ from {
413
+ opacity: 0;
414
+ transform: translateY(-50px) scale(0.9);
415
+ }
416
+
417
+ to {
418
+ opacity: 1;
419
+ transform: translateY(0) scale(1);
420
+ }
421
  }
422
 
423
  .modal-header {
 
492
  z-index: 5;
493
  }
494
 
495
+ .copy-btn:hover {
496
+ transform: translate(-2px, -2px);
497
+ box-shadow: 4px 4px 0 var(--bg);
498
+ }
499
+
500
+ .copy-btn.copied {
501
+ background: var(--primary);
502
+ }
503
 
504
  .notification {
505
  position: fixed;
 
516
  }
517
 
518
  @keyframes slideInRight {
519
+ from {
520
+ transform: translateX(400px);
521
+ opacity: 0;
522
+ }
523
+
524
+ to {
525
+ transform: translateX(0);
526
+ opacity: 1;
527
+ }
528
  }
529
 
530
  @keyframes slideOutRight {
531
+ to {
532
+ transform: translateX(400px);
533
+ opacity: 0;
534
+ }
535
  }
536
 
537
  @media (max-width: 768px) {
538
+ .container {
539
+ padding: 1rem;
540
+ }
541
+
542
+ .input-section,
543
+ .table-wrapper {
544
+ box-shadow: 4px 4px 0 var(--primary);
545
+ }
546
+
547
+ th,
548
+ td {
549
+ padding: 1rem 0.5rem;
550
+ font-size: 0.9rem;
551
+ }
552
+
553
+ .modal-content {
554
+ padding: 0;
555
+ }
556
+
557
+ .code-block {
558
+ margin: 1rem;
559
+ }
560
  }
561
  </style>
562
  </head>
 
565
  <div class="container">
566
  <header>
567
  <h1>Text-to-Text Generator</h1>
568
+ <p class="subtitle">Qwen3.5-4B &bull; Submit &bull; Queue &bull; Generate</p>
569
  </header>
570
 
571
  <div class="input-section">
 
795
  </script>
796
  </body>
797
 
798
+ </html>