93 lines
1.2 KiB
CSS
93 lines
1.2 KiB
CSS
.wsnav
|
|
{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 100;
|
|
background: #1a1d27;
|
|
border-bottom: 1px solid #2a2d3a;
|
|
font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
|
|
font-size: 0.82rem;
|
|
}
|
|
|
|
.wsnav-inner
|
|
{
|
|
width: 57em;
|
|
margin: 0 auto;
|
|
padding: 0.45rem 1.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.wsnav a
|
|
{
|
|
color: #7c8cff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wsnav a:hover
|
|
{
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* ── Breadcrumb ── */
|
|
|
|
.wsnav-crumb
|
|
{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.wsnav-sep
|
|
{
|
|
color: #4a4e6a;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.wsnav-current
|
|
{
|
|
color: #e2e4ed;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* ── Siblings ── */
|
|
|
|
.wsnav-siblings
|
|
{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.45rem;
|
|
flex-wrap: wrap;
|
|
color: #7b7f96;
|
|
font-size: 0.88em;
|
|
}
|
|
|
|
.wsnav-sib-current
|
|
{
|
|
color: #e2e4ed;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.wsnav-sib-sep
|
|
{
|
|
color: #4a4e6a;
|
|
}
|
|
|
|
/* ── Children ── */
|
|
|
|
.wsnav-children
|
|
{
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
flex-wrap: wrap;
|
|
font-size: 0.88em;
|
|
padding-top: 0.1rem;
|
|
border-top: 1px solid #2a2d3a;
|
|
margin-top: 0.1rem;
|
|
}
|