Last active
August 20, 2025 20:39
-
-
Save Vendicated/d914b0f63846f75219e0e4d1393690a4 to your computer and use it in GitHub Desktop.
Fix the mdn redesign
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.cdnfonts.com/css/menlo'); | |
.page-layout__banner { | |
display: none; | |
} | |
:root { | |
--font-family-code: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace; | |
--color-background-page: #1b1b1b; | |
} | |
code { | |
font-size: 0.833rem | |
} | |
.left-sidebar { | |
scrollbar-color: var(--color-scrollbar-thumb) transparent; | |
width: 80%; | |
} | |
.reference-toc a { | |
padding: 8px 16px; | |
color: var(--color-text-secondary); | |
} | |
.left-sidebar a { | |
color: var(--color-text-secondary); | |
} | |
.reference-layout { | |
padding-inline: 2rem; | |
} | |
.reference-layout__toc { | |
margin-left: 2rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment