Template:Mdn.css: Difference between revisions

From pronounmail wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
:root {
color-scheme: light dark;
font-family: Inter, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
#bodyContent {
#bodyContent {
  color: red;
max-width: 1440px;
display: grid;
grid-gap: 3rem;
gap: 3rem;
grid-template-areas: "sidebar main toc";
grid-template-columns: minmax(0,1fr) minmax(0,2.5fr) minmax(0,15rem);
}
}



Revision as of 14:18, 19 June 2025

:root {
	color-scheme: light dark;
	font-family: Inter, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}
#bodyContent {
	max-width: 1440px;
	
	display: grid;
	grid-gap: 3rem;
	gap: 3rem;
	grid-template-areas: "sidebar main toc";
	grid-template-columns: minmax(0,1fr) minmax(0,2.5fr) minmax(0,15rem);
}

#content {
	border: none;
	background: transparent;
}

body {
	background-color: light-dark(#fff, rgb(27, 27, 27));
}