|
47 | 47 |
|
48 | 48 | .site-header .overlake-logo { |
49 | 49 | position: absolute; |
50 | | - right: 4rem; /* Distance from right edge - adjust as needed */ |
| 50 | + right: 2rem; /* Distance from right edge - adjust as needed */ |
51 | 51 | top: 50%; |
52 | 52 | transform: translateY(-50%); /* Centers vertically */ |
53 | 53 | margin: 0; |
54 | 54 | padding: 0; |
55 | 55 | } |
56 | 56 |
|
| 57 | +/* Custom navigation panel styling */ |
| 58 | +.side-bar { |
| 59 | + background-color: #f1f8ff !important; /* Light blue background */ |
| 60 | + border-right: 1px solid #d1d9e0 !important; /* Subtle border */ |
| 61 | +} |
| 62 | + |
| 63 | +/* Navigation item styling */ |
| 64 | +.navigation-list-link:hover { |
| 65 | + background-color: rgba(9, 105, 218, 0.1) !important; /* Blue tint on hover */ |
| 66 | + border-radius: 6px !important; |
| 67 | +} |
| 68 | + |
| 69 | +/* Active page styling */ |
| 70 | +.navigation-list-link.active { |
| 71 | + background-color: #0969da !important; |
| 72 | + color: white !important; |
| 73 | + border-radius: 6px !important; |
| 74 | +} |
| 75 | + |
| 76 | +/* Dark theme compatibility */ |
| 77 | +[data-color-mode="dark"] .side-bar { |
| 78 | + background-color: #0d1117 !important; |
| 79 | + border-right: 1px solid #30363d !important; |
| 80 | +} |
| 81 | + |
57 | 82 | /* Mobile responsive */ |
58 | 83 | @media (max-width: 768px) { |
59 | 84 | .overlake-main { |
|
85 | 110 | const logoDiv = document.createElement('div'); |
86 | 111 | logoDiv.className = 'overlake-logo'; |
87 | 112 | logoDiv.innerHTML = ` |
88 | | - <div class="overlake-main">over<span class="overlake-lake">lake</span></div> |
| 113 | + <div class="overlake-main"><span class="overlake-lake">docs.</span>over<span class="overlake-lake">lake</span></div> |
89 | 114 | <div class="overlake-bio">.bio</div> |
90 | 115 | `; |
91 | 116 |
|
|
0 commit comments