website/assets/styles/vars.css
Jeroen De Meerleer 239568d615
Update styles for better layout and readability
- Adjusted padding and margins in main content area
- Added line-height to headings and paragraphs for clarity
- Introduced a new variable for font size to maintain consistency
2025-01-24 12:34:34 +01:00

17 lines
544 B
CSS

:root {
--sidebar-background: rgb(0, 0, 0);
--sidebar-text-color: rgb(255, 255, 255);
--sidebar-text-muted-color: rgb(192, 192, 192);
--sidebar-text-muted-size: 10px;
--sidebar-font: 'Fira Code', monospace;
--main-font: 'Fira Code', monospace;
--main-background: rgb(224, 224, 224);
--main-size: 16px;
--main-h1-size: 28px;
--main-h1-before-color: rgb(128,128,128);
--main-h2-size: 24px;
--main-h2-before-color: rgb(128,128,128);
--main-h3-size: 24px;
--main-link-color: rgb(64,64,64);
}