- **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.
57 lines
925 B
CSS
57 lines
925 B
CSS
.Drinks {
|
|
font-family: sans-serif;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 2rem;
|
|
text-align: center;
|
|
background-color: #fff;
|
|
color: #ceb39b;
|
|
padding: 2rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.title {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.card-link {
|
|
border: 1px solid #000;
|
|
padding: 0.5rem 1rem;
|
|
margin-bottom: 2rem;
|
|
color: #fff;
|
|
background: linear-gradient(45deg, #ffa500, #ff7f00);
|
|
}
|
|
|
|
.monats-hit {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.mate-vodka {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.circle {
|
|
height: 6em;
|
|
width: 6em;
|
|
border: 2px solid #000;
|
|
border-radius: 50%;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.circle-row {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.note {
|
|
margin-top: 2rem;
|
|
font-style: italic;
|
|
text-align: center;
|
|
} |