mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
892 B
48 lines
892 B
._path {
|
|
position: absolute;
|
|
z-index: var(--headerZ);
|
|
bottom: 0;
|
|
left: var(--sidebarWidth);
|
|
right: 0;
|
|
height: 2rem;
|
|
line-height: 2rem;
|
|
padding: 0 .375rem;
|
|
font-size: .875rem;
|
|
background: var(--pathBackground);
|
|
box-shadow: inset 0 1px var(--pathBorder);
|
|
|
|
@include mobile { left: var(--sidebarMediumWidth); }
|
|
|
|
._sidebar-hidden & { left: 0; }
|
|
|
|
~ ._container { padding-bottom: 2rem; }
|
|
a:focus { outline: 0; }
|
|
}
|
|
|
|
._path-item {
|
|
position: relative;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
padding: 0 .375rem;
|
|
color: var(--textColor);
|
|
text-decoration: none;
|
|
|
|
&:first-child:before {
|
|
content: '';
|
|
float: left;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
margin: .5rem .375rem 0 0;
|
|
@extend %doc-icon;
|
|
}
|
|
}
|
|
|
|
._path-arrow {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: .75rem;
|
|
height: .75rem;
|
|
margin: .625rem .25rem;
|
|
fill: #888;
|
|
}
|