Files
Gallus_Pub/styles/index.css
Kenzo 761bd6be80 Update CSS imports and Dockerfile for consistent styles handling
- Enforced `!important` for `--color-background` in `variables.css`.
- Centralized CSS imports in `Layout.astro` for cleaner markup.
- Adjusted Dockerfile to ensure CSS variables are copied to `public/styles`.
- Refined fallback handling in `index.css` for `background-color`.
2025-08-02 12:57:17 +02:00

35 lines
563 B
CSS

/* === Global Reset === */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Add smooth scrolling behavior */
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-family-primary), serif;
background-color: var(--color-background, #000000);
background: #000000;
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;
}
a {
color: #ffa500;
}
a:hover {
text-decoration: none;
}