Files
Gallus_Pub/styles/components/Footer.css
k 03671a4d3e Update styles and dependencies, improve Footer and Drinks components layout
- **HoverCard improvements**: Adjusted dimensions and removed unused title styles for cleaner design.
- **Footer layout**: Reorganized structure by repositioning the copyright section and updating its styles for better hierarchy.
- **Drinks component**: Expanded circle dimensions and refined font-family fallback to include `serif`.
- **Dependencies update**: Upgraded `astro` and related packages to their latest versions for security and performance enhancements.
2025-08-02 13:31:48 +02:00

63 lines
1001 B
CSS

.footer {
background-color: #213b28;
color: white;
padding: 3rem 0;
margin-top: 4rem;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.copyright {
text-align: center;
margin-top: 2rem;
padding-top: 1rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-sections {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
justify-content: center;
}
.footer-section {
text-align: center;
}
.footer-section h3 {
color: #ffffff;
margin-bottom: 1rem;
font-size: 1.2rem;
}
.footer-section p {
margin: 0.5rem 0;
color: #cccccc;
font-size: 0.9rem;
}
.footer-section a {
color: #ffffff;
text-decoration: none;
}
.footer-section a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.footer-sections {
grid-template-columns: 1fr;
gap: 2rem;
}
.footer-section {
padding: 0 1rem;
}
}