Files
Gallus_Pub/Gallus_Pub_v1/styles/index.css
Kenzo b830f2edaf Introduce CSS variables for consistent theming
This commit refactors existing styles to use CSS variables, centralizing values for colors, spacing, typography, and other design elements. It also adds a `variables.css` file for managing these variables. Updated affected components and stylesheets for better maintainability and consistency.
2025-07-19 16:45:51 +02:00

21 lines
392 B
CSS

/* === Global Reset === */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-family-primary);
background-color: var(--color-background);
color: var(--color-text);
line-height: var(--line-height);
}
/* === Container für zentralen Content === */
.container {
max-width: var(--container-max-width);
width: var(--container-width);
margin: 0 auto;
}