stat2025 commited on
Commit
ba467f0
·
verified ·
1 Parent(s): b0f49c3

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +34 -4
style.css CHANGED
@@ -7,7 +7,6 @@
7
  --text-main: #111827;
8
  --text-muted: #6b7280;
9
  --radius-xl: 22px;
10
- --radius-md: 14px;
11
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.09);
12
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
13
  --transition: 0.18s ease;
@@ -337,8 +336,6 @@ body {
337
  font-size: 8.5px;
338
  }
339
 
340
- /* أزرار الصف */
341
-
342
  .row-actions {
343
  display: flex;
344
  align-items: center;
@@ -386,7 +383,7 @@ body {
386
  }
387
 
388
  .output-input:focus {
389
- border-color: var(--primary);
390
  box-shadow: 0 0 0 3px var(--primary-soft2);
391
  }
392
 
@@ -484,6 +481,39 @@ body {
484
  border: 1px solid #fed7aa;
485
  }
486
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
487
  /* تجاوب */
488
 
489
  @media (max-width: 640px) {
 
7
  --text-main: #111827;
8
  --text-muted: #6b7280;
9
  --radius-xl: 22px;
 
10
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.09);
11
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
12
  --transition: 0.18s ease;
 
336
  font-size: 8.5px;
337
  }
338
 
 
 
339
  .row-actions {
340
  display: flex;
341
  align-items: center;
 
383
  }
384
 
385
  .output-input:focus {
386
+ border-color: #2563eb;
387
  box-shadow: 0 0 0 3px var(--primary-soft2);
388
  }
389
 
 
481
  border: 1px solid #fed7aa;
482
  }
483
 
484
+ /* شريط التقدم */
485
+
486
+ .progress {
487
+ margin-top: 6px;
488
+ display: flex;
489
+ flex-direction: column;
490
+ gap: 4px;
491
+ }
492
+
493
+ .progress.hidden {
494
+ display: none;
495
+ }
496
+
497
+ .progress-text {
498
+ font-size: 9.5px;
499
+ color: #374151;
500
+ }
501
+
502
+ .progress-bar {
503
+ width: 100%;
504
+ height: 6px;
505
+ background-color: #e5e7eb;
506
+ border-radius: 999px;
507
+ overflow: hidden;
508
+ }
509
+
510
+ .progress-fill {
511
+ height: 100%;
512
+ width: 0%;
513
+ background: linear-gradient(90deg, #2563eb, #60a5fa);
514
+ transition: width 0.18s ease;
515
+ }
516
+
517
  /* تجاوب */
518
 
519
  @media (max-width: 640px) {