Skip to content

Commit 80ef2b1

Browse files
committed
Fixed logo
1 parent 65fea23 commit 80ef2b1

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

_includes/head_custom.html

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,38 @@
4747

4848
.site-header .overlake-logo {
4949
position: absolute;
50-
right: 4rem; /* Distance from right edge - adjust as needed */
50+
right: 2rem; /* Distance from right edge - adjust as needed */
5151
top: 50%;
5252
transform: translateY(-50%); /* Centers vertically */
5353
margin: 0;
5454
padding: 0;
5555
}
5656

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+
5782
/* Mobile responsive */
5883
@media (max-width: 768px) {
5984
.overlake-main {
@@ -85,7 +110,7 @@
85110
const logoDiv = document.createElement('div');
86111
logoDiv.className = 'overlake-logo';
87112
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>
89114
<div class="overlake-bio">.bio</div>
90115
`;
91116

0 commit comments

Comments
 (0)