Anne-Charlotte commited on
Commit
0513e42
·
verified ·
1 Parent(s): e610d9f

Update styles.css

Browse files
Files changed (1) hide show
  1. styles.css +39 -17
styles.css CHANGED
@@ -439,32 +439,54 @@ body {
439
  display: flex;
440
  align-items: center;
441
  justify-content: center;
442
- gap: 0.5rem;
443
- padding: 0 1rem;
444
- overflow-x: auto;
445
  }
446
 
447
- .step-indicator {
448
- height: 0.75rem;
449
- border-radius: 9999px;
450
- transition: all 0.3s;
451
- cursor: pointer;
 
452
  border: none;
 
 
 
 
 
 
 
453
  }
454
 
455
- .step-indicator-inactive {
456
- width: 0.75rem;
457
- background-color: hsla(240, 4%, 46%, 0.3);
458
  }
459
 
460
- .step-indicator-inactive:hover {
461
- background-color: hsla(240, 4%, 46%, 0.5);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  }
463
 
464
- .step-indicator-active {
465
- width: 3rem;
466
- background: var(--orange);
467
- box-shadow: 0 0 20px hsla(35, 100%, 50%, 0.4);
468
  }
469
 
470
  /* Progress Bar */
 
439
  display: flex;
440
  align-items: center;
441
  justify-content: center;
442
+ gap: 0.25rem;
443
+ padding: 0 0.5rem;
 
444
  }
445
 
446
+ .step-indicator-num {
447
+ width: 1.5rem;
448
+ height: 1.5rem;
449
+ border-radius: 50%;
450
+ font-size: 0.75rem;
451
+ font-weight: 500;
452
  border: none;
453
+ cursor: pointer;
454
+ transition: all 0.2s;
455
+ background-color: var(--muted);
456
+ color: var(--muted-foreground);
457
+ display: flex;
458
+ align-items: center;
459
+ justify-content: center;
460
  }
461
 
462
+ .step-indicator-num:hover {
463
+ background-color: hsla(240, 5%, 96%, 0.8);
464
+ transform: scale(1.05);
465
  }
466
 
467
+ .step-indicator-num-active {
468
+ background-color: var(--orange);
469
+ color: white;
470
+ box-shadow: 0 2px 8px hsla(35, 100%, 50%, 0.4);
471
+ transform: scale(1.1);
472
+ }
473
+
474
+ .step-indicator-nav {
475
+ width: 1.5rem;
476
+ height: 1.5rem;
477
+ border-radius: 50%;
478
+ border: none;
479
+ cursor: pointer;
480
+ background-color: var(--muted);
481
+ color: var(--muted-foreground);
482
+ display: flex;
483
+ align-items: center;
484
+ justify-content: center;
485
+ transition: background-color 0.2s;
486
  }
487
 
488
+ .step-indicator-nav:hover {
489
+ background-color: hsla(240, 5%, 96%, 0.8);
 
 
490
  }
491
 
492
  /* Progress Bar */