Files
Gallus_Pub/src/styles/index.css
k 2fab4bf70b
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Refactor styles and imports for consistency and maintainability:
- **CSS restructuring**: Moved `styles` folder into `src` for better organization.
- **Updated imports**: Adjusted component CSS imports to reflect new paths.
- **Component tweaks**:
  - Increased HoverCard width from `350px` to `400px` for better visual balance.
  - Adjusted Footer layout: reorganized copyright and added email link.
  - Modified Drinks circle dimensions (from `6em` to `9em`) for improved design.
- **Footer styles**: Changed copyright section's layout with top spacing and border adjustments.
2025-08-02 13:50:56 +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;
}