Skip to content

Commit 2356a2b

Browse files
committed
design
1 parent f37066b commit 2356a2b

File tree

1 file changed

+18
-24
lines changed

1 file changed

+18
-24
lines changed

assets/css/style.css

Lines changed: 18 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ main {
296296
.breadcrumb {
297297
display: flex;
298298
align-items: center;
299-
gap: 8px;
299+
gap: 0;
300300
margin-bottom: 32px;
301301
padding: 12px 20px;
302302
background: var(--bg-secondary);
@@ -311,29 +311,34 @@ main {
311311
}
312312

313313
.breadcrumb-item a {
314-
color: var(--text-secondary) !important;
315-
text-decoration: none !important;
314+
color: var(--text-secondary);
315+
text-decoration: none;
316316
transition: color 0.2s ease;
317317
}
318318

319319
.breadcrumb-item a:hover {
320-
color: var(--accent-primary) !important;
321-
text-decoration: none !important;
322-
}
323-
324-
.breadcrumb-item a:visited {
325-
color: var(--text-secondary) !important;
320+
color: var(--accent-primary);
326321
}
327322

328323
.breadcrumb-item.active {
329324
color: var(--text-primary);
330325
font-weight: 500;
331326
}
332327

333-
.breadcrumb-item + .breadcrumb-item::before {
328+
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
334329
content: '/';
335-
margin: 0 8px;
336-
color: var(--text-muted);
330+
margin: 0 12px;
331+
color: var(--text-primary);
332+
font-weight: 500;
333+
opacity: 0.6;
334+
position: static;
335+
width: auto;
336+
height: auto;
337+
background: none;
338+
border-radius: 0;
339+
transform: none;
340+
box-shadow: none;
341+
z-index: auto;
337342
}
338343

339344
/* Section grid */
@@ -1069,6 +1074,7 @@ main pre code {
10691074
overflow-y: auto;
10701075
padding-top: 80px;
10711076
order: 3;
1077+
display: block;
10721078
}
10731079

10741080
.main-nav.active {
@@ -1111,18 +1117,6 @@ main pre code {
11111117
color: white;
11121118
}
11131119

1114-
/* Overlay when menu is open */
1115-
body.menu-open::before {
1116-
content: '';
1117-
position: fixed;
1118-
top: 0;
1119-
left: 0;
1120-
width: 100%;
1121-
height: 100vh;
1122-
background: rgba(0, 0, 0, 0.5);
1123-
z-index: 1000;
1124-
}
1125-
11261120
/* Show menu toggle button */
11271121
.menu-toggle {
11281122
display: flex !important;

0 commit comments

Comments
 (0)