46 lines
735 B
CSS
46 lines
735 B
CSS
.breadcrumbs {
|
|
background-color: var(--some-grey-color, #f2f2f2);
|
|
display: block;
|
|
padding-bottom: 0.8rem;
|
|
padding-left: 2rem;
|
|
padding-top: 3rem;
|
|
position: sticky;
|
|
top: var(--header-height);
|
|
z-index: 999;
|
|
}
|
|
|
|
.list {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: 0.4rem;
|
|
justify-content: flex-start;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.listItem,
|
|
.link {
|
|
color: var(--some-text-color, #000);
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
line-height: 1.56rem;
|
|
}
|
|
|
|
.listItem {
|
|
display: flex;
|
|
gap: 0.4rem;
|
|
}
|
|
|
|
.currentPage {
|
|
margin: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.breadcrumbs {
|
|
background-color: var(--some-white-color, #fff);
|
|
padding-left: 2.4rem;
|
|
padding-top: 2rem;
|
|
}
|
|
}
|