Template:Mdn.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
:root { | :root { | ||
color-scheme: light dark; | color-scheme: light dark; | ||
font | --font: Inter, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; | ||
} | } | ||
.wrapper { | .wrapper { | ||
max-width: 1440px; | max-width: 1440px; | ||
margin: auto; | |||
display: grid; | display: grid; | ||
| Line 12: | Line 13: | ||
grid-template-areas: "sidebar main toc"; | grid-template-areas: "sidebar main toc"; | ||
grid-template-columns: minmax(0,1fr) minmax(0,2.5fr) minmax(0,15rem); | grid-template-columns: minmax(0,1fr) minmax(0,2.5fr) minmax(0,15rem); | ||
font-family: var(--font) !important; | |||
color: light-dark(rgb(27, 27, 27), #fff); | |||
} | } | ||