25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

51 lines
1.1 KiB

  1. @use '../atoms/variables' as *;
  2. // ─── Dunkle Top-Navigation ────────────────────────────────────────────────────
  3. .main-nav {
  4. background: #1a2a3a;
  5. display: flex;
  6. align-items: stretch;
  7. justify-content: space-between;
  8. padding: 0 $space-4;
  9. height: 44px;
  10. flex-shrink: 0;
  11. position: sticky;
  12. top: 0;
  13. z-index: 200;
  14. }
  15. .main-nav__left,
  16. .main-nav__right {
  17. display: flex;
  18. align-items: stretch;
  19. gap: 0;
  20. }
  21. .main-nav__item {
  22. display: inline-flex;
  23. align-items: center;
  24. padding: 0 $space-4;
  25. font-size: $font-size-sm;
  26. font-weight: $font-weight-medium;
  27. color: rgba(255, 255, 255, 0.65);
  28. text-decoration: none;
  29. border-bottom: 2px solid transparent;
  30. transition: color $transition-fast, border-color $transition-fast;
  31. white-space: nowrap;
  32. &:hover {
  33. color: $color-white;
  34. }
  35. &--active {
  36. color: $color-white;
  37. border-bottom-color: $color-primary-light;
  38. }
  39. &--disabled {
  40. opacity: 0.35;
  41. pointer-events: none;
  42. cursor: default;
  43. }
  44. }