All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- 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`.
35 lines
563 B
CSS
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;
|
|
} |