Twitch-VOD-Manager/docs/src/styles/global.css
xRangerDE 301132c9ee Add Astro + MDX docs workspace
Create a separate docs project with Astro and MDX so product documentation can evolve independently from the Electron app while supporting the planned TS/MDX migration.
2026-02-13 10:00:12 +01:00

23 lines
336 B
CSS

:root {
color-scheme: dark;
font-family: 'Segoe UI', Tahoma, sans-serif;
background: #101216;
color: #f2f4f8;
}
body {
margin: 0;
min-height: 100vh;
background: radial-gradient(circle at top, #1a2330 0%, #101216 55%);
}
.container {
max-width: 860px;
margin: 0 auto;
padding: 40px 20px;
}
a {
color: #5ca3ff;
}