This commit is contained in:
Maxim Devaev 2025-04-29 23:22:38 +03:00
parent 0e2bb380da
commit c815a21789
1 changed files with 20 additions and 8 deletions

View File

@ -29,8 +29,10 @@ li.md-nav__item--section > label.md-nav__link {
margin-top: unset; margin-top: unset;
} }
.md-nav__title { @media screen and (min-width: 76.3em) {
display: none; .md-nav__title {
display: none;
}
} }
.md-sidebar--primary .md-nav__link--active { .md-sidebar--primary .md-nav__link--active {
@ -42,8 +44,10 @@ li.md-nav__item--section > label.md-nav__link {
margin-right: 6px; margin-right: 6px;
} }
.md-post__back > .md-nav__title { /* Blog: Enable "Back to index" */ @media screen and (min-width: 76.3em) {
display: block; .md-post__back > .md-nav__title { /* Blog: Enable "Back to index" */
display: block;
}
} }
.md-post__back { /* Blog */ .md-post__back { /* Blog */
padding-top: 1.2rem; padding-top: 1.2rem;
@ -53,8 +57,10 @@ li.md-nav__item--section > label.md-nav__link {
background-color: #333333; background-color: #333333;
} }
.md-footer__inner.md-grid { @media screen and (min-width: 76.3em) {
display: none; .md-footer__inner.md-grid {
display: none;
}
} }
.md-sidebar { .md-sidebar {
@ -101,8 +107,10 @@ li.md-nav__item--section > label.md-nav__link {
margin-top: 0px; margin-top: 0px;
} }
.md-top { @media screen and (min-width: 76.3em) {
display: none; .md-top {
display: none;
}
} }
.md-typeset hr { .md-typeset hr {
@ -125,3 +133,7 @@ li.md-nav__item--section > label.md-nav__link {
ol li::marker { ol li::marker {
font-weight: bold; font-weight: bold;
} }
.md-typeset li details {
margin: 0;
}