at main 32 lines 511 B view raw
1/* App shell styles - theme-defaults.css must load first */ 2 3body { 4 background-color: var(--color-base); 5 color: var(--color-text); 6 font-family: var(--font-ui); 7} 8 9.app-shell { 10 display: flex; 11 flex-direction: column; 12 min-height: 100vh; 13} 14 15.app-main { 16 flex: 1; 17} 18 19a { 20 color: var(--color-link); 21 text-decoration: none; 22} 23 24#header { 25 max-width: 1200px; 26} 27 28/* .notebook-content width constraint for rendered content */ 29.notebook-content { 30 width: 100%; 31 max-width: 95ch; 32}