- **Added component-specific styles**: Introduced scoped CSS files for `Hero`, `Header`, `Drinks`, `Footer`, and `Welcome` components. - **Expanded functionality**: Added `Drinks` section with a new layout and stylized elements. - **Assets fix**: Replaced asset links with correct paths, ensuring consistency for images and files (e.g., `Welcome.png`, `Menu.pdf`). - **Reorganized header and footer**: Modernized `Header` layout with a fixed navbar, added utility spacer, and redesigned footer to include additional details. - **Integrated Docker and CI/CD**: Added `Dockerfile`, `fly.toml`, and `.woodpecker.yml` for multi-environment deployment. - **Improved homepage**: Incorporated `Drinks` component and updated styles for cohesive design. - **CSS cleanup**: Removed redundant global styles from `index.css` and migrated them to appropriate scoped styles. Complete revamp to provide modular and deployable updates for long-term scalability.
95 lines
1.4 KiB
CSS
95 lines
1.4 KiB
CSS
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: rgba(26, 26, 26, 0.95);
|
|
z-index: 1000;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
|
|
.header-spacer {
|
|
height: 70px; /* Should match the header height */
|
|
}
|
|
|
|
|
|
.logo-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
margin-left: 2em;
|
|
height: 4em;
|
|
width: auto;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.logo:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.nav-main {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 377px;
|
|
}
|
|
|
|
.nav-main a,
|
|
.dropdbtn {
|
|
margin: 0 1rem;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.nav-main a:hover,
|
|
.dropdbtn:hover {
|
|
color: #ffa500;
|
|
}
|
|
|
|
/* Dropdown für Home */
|
|
.dropdown {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.dropdown-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #0e0c0c;
|
|
min-width: 160px;
|
|
z-index: 1;
|
|
border: 1px solid #444;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.dropdown-content a {
|
|
color: #f5f5f5;
|
|
padding: 0.5rem 1rem;
|
|
text-decoration: none;
|
|
display: block;
|
|
}
|
|
|
|
.dropdown-content a:hover {
|
|
background-color: #1f1a1a;
|
|
color: #ffa500;
|
|
}
|
|
|
|
.dropdown:hover .dropdown-content {
|
|
display: block;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.nav-container {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.nav-links {
|
|
gap: 1rem;
|
|
}
|
|
}
|