44 lines
493 B
CSS
44 lines
493 B
CSS
.nav {
|
||
display: none;
|
||
padding-bottom: 8px;
|
||
}
|
||
|
||
.parent {
|
||
display: none;
|
||
}
|
||
|
||
.list {
|
||
align-items: center;
|
||
display: grid;
|
||
gap: 7px;
|
||
grid-auto-flow: column;
|
||
justify-content: flex-start;
|
||
}
|
||
|
||
.link {
|
||
color: #333;
|
||
}
|
||
|
||
.currentPage {
|
||
color: #7f7369;
|
||
margin-bottom: 0px;
|
||
}
|
||
|
||
.currentPage,
|
||
.li {
|
||
font-size: 0.875rem;
|
||
line-height: 1.4em;
|
||
}
|
||
|
||
.li::before,
|
||
.currentPage::before {
|
||
content: "›";
|
||
margin-right: 4px;
|
||
}
|
||
|
||
@media (min-width: 740px) {
|
||
.nav {
|
||
display: block;
|
||
}
|
||
}
|